-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.base.env
38 lines (30 loc) · 979 Bytes
/
.base.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Info
app_name="Faster Template"
# Database
POSTGRES_USER="postgres"
POSTGRES_PASSWORD="somecomplexdbpasswordhere"
POSTGRES_DB="faster_db"
test_database_name="faster_test_db"
database_private_address="faster_db" # docker-compose service name, can be changed as required
database_public_address="faster_db" # docker-compose service name, can be changed as required
database_port="5432"
# Admin Users
test_super_user_email="[email protected]"
test_super_username="test_super_user"
test_super_user_password="test_super_user_password"
# JWT
jwt_secret_key="somesupersecretkeyhere"
jwt_algorithm="HS256"
token_life_span=36
token_long_life_span=365
# URL
token_url="auth/docs-token"
frontend_url="http://localhost:3000"
# Email
source_email="[email protected]"
sendgrid_api_key="somesupersecretkeyhere"
# Cloud
cloud_bucket_name="faster-bucket"
cloud_storage_url="https://storage.googleapis.com"
# CORS
cors_origin='["http://localhost:3000", "http://localhost:3001"]'