This commit is contained in:
ljshwyykl 2021-11-25 19:20:03 +08:00
parent 0548546881
commit e2c2a6602a
5 changed files with 6512 additions and 1 deletions

5
.gitignore vendored
View File

@ -4,7 +4,10 @@
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# backend
/target/
./backend/.env
./backend/configuration/base.yaml
# These are backup files generated by rustfmt
**/*.rs.bk

1
backend/.env.example Normal file
View File

@ -0,0 +1 @@
DATABASE_URL="postgres://postgres:password@localhost:5433/flowy"

3946
backend/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,9 @@
application:
port: 8000
host: 0.0.0.0
database:
host: "localhost"
port: 5433
username: "postgres"
password: "password"
database_name: "flowy"

2552
shared-lib/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff