1.1 KiB
1.1 KiB
AppFlowy Cloud
- Cloud Server for AppFlowy
Deployment
- See deployment guide
Development
Pre-requisites
You'll need to install:
Configuration
- copy the configurations from
dev.envto.env - edit the
.envas required (such as SMTP configurations)
Run the dependency servers
docker compose --file docker-compose-dev.yml up -d
Install sqlx-cli
cargo install sqlx-cli
Run sqlx migration
sqlx database create
sqlx migrate run
cargo sqlx prepare --workspace
Run the AppFlowy-Cloud server
cargo run
Run the tests
Test
cargo test
Debugging
Postgres
- PgAdmin
- OR command line:
export PGPASSWORD=password
psql --host=localhost --username=postgres --port=5433
- Redis
redis-cli -p 6380