2023fc81f8
* Version fix * Workflow fix * Test fix * Test fix * Removing code that was meant to be removed Caused an extra file to be created when the request is called * Updated env sample to address workflow * Removed import * env fix * Version change * Version bump Going with the version I done earlier. I won't have the versioning match the api version in the endpoints * Fixing versions for app dependencies
13 lines
520 B
Bash
13 lines
520 B
Bash
APP_ENV=production
|
|
BACKEND_PORT=8000
|
|
FRONTEND_URL=http://localhost:4200
|
|
RUST_LOG=debug
|
|
ALLOWED_ORIGINS=https://soaricarus.com,https://www.soaricarus.com,http://localhost:8000,http://127.0.0.1:8000
|
|
SECRET_MAIN_KEY=refero34o8rfhfjn983thf39fhc943rf923n3h
|
|
ROOT_DIRECTORY=/home/icarus/mydata
|
|
POSTGRES_MAIN_USER=icarus
|
|
POSTGRES_MAIN_PASSWORD=password
|
|
POSTGRES_MAIN_DB=icarus_db
|
|
POSTGRES_MAIN_HOST=localhost
|
|
DATABASE_URL=postgres://${POSTGRES_MAIN_USER}:${POSTGRES_MAIN_PASSWORD}@${POSTGRES_MAIN_HOST}:5432/${POSTGRES_MAIN_DB}
|