Skip to content

Commit

Permalink
Create .env
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Sep 22, 2024
1 parent 2b4269d commit 3e0665e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions bank_integration/banks/banking_app/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Database settings
DATABASE_URL=postgres://user:password@localhost:5432/database
POSTGRES_USER=user
POSTGRES_PASSWORD=password
POSTGRES_DB=database

# JWT settings
JWT_SECRET_KEY=secret_key
JWT_TOKEN_LOCATION=headers
JWT_HEADER_NAME=Authorization
JWT_HEADER_TYPE=Bearer

# Flask settings
FLASK_APP=app
FLASK_ENV=development
FLASK_RUN_HOST=0.0.0.0
FLASK_RUN_PORT=5000

# Other settings
DEBUG=True
TESTING=False

0 comments on commit 3e0665e

Please sign in to comment.