diff options
| author | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2024-11-22 13:11:50 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-22 13:11:50 +0300 |
| commit | 00711cab5bb8f3cdd1b86d062ef067587e3fc18a (patch) | |
| tree | fbbb6b095ca91f8189425d05c7cdfd8986e61280 /backend/.env.example | |
| parent | feat/frontend: remove map select from upload run dialog (#239) (diff) | |
| download | lphub-00711cab5bb8f3cdd1b86d062ef067587e3fc18a.tar.gz lphub-00711cab5bb8f3cdd1b86d062ef067587e3fc18a.tar.bz2 lphub-00711cab5bb8f3cdd1b86d062ef067587e3fc18a.zip | |
feat/backend: local demos path for testing (#243)
Co-authored-by: NeKz <nekzor@users.noreply.github.com>
Diffstat (limited to 'backend/.env.example')
| -rw-r--r-- | backend/.env.example | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/backend/.env.example b/backend/.env.example index 90ca8b4..b0a7101 100644 --- a/backend/.env.example +++ b/backend/.env.example | |||
| @@ -1,13 +1,14 @@ | |||
| 1 | PORT= | 1 | PORT=4000 |
| 2 | SECRET_KEY= | 2 | SECRET_KEY=123456789ABCDEF |
| 3 | API_KEY= | 3 | API_KEY=123456789ABCDEF |
| 4 | ENV= | 4 | ENV=DEV |
| 5 | DB_HOST= | 5 | DB_HOST=localhost |
| 6 | DB_PORT= | 6 | DB_PORT=5432 |
| 7 | DB_USER= | 7 | DB_USER=postgres |
| 8 | DB_PASS= | 8 | DB_PASS=postgres |
| 9 | DB_NAME= | 9 | DB_NAME=postgres |
| 10 | B2_BUCKET_NAME= | 10 | B2_BUCKET_NAME=lphub |
| 11 | B2_KEY_ID= | 11 | B2_KEY_ID=123456789ABCDEF |
| 12 | B2_API_KEY= | 12 | B2_API_KEY=123456789ABCDEF |
| 13 | B2_DOWNLOAD_URL= | 13 | B2_DOWNLOAD_URL=https://lphub.s3.eu-central-001.backblazeb2.com/ |
| 14 | LOCAL_DEMOS_PATH=/path/to/demos/ | ||