-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.test
More file actions
16 lines (13 loc) · 768 Bytes
/
.env.test
File metadata and controls
16 lines (13 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Sets the location of the flask application object: https://flask.palletsprojects.com/en/2.3.x/cli/#application-discovery
# Needed because of the presence of the "todo_app" folder
FLASK_APP=todo_app/app
# Turn on debug mode (which enables reloading on code changes and the interactive debugger: https://flask.palletsprojects.com/en/2.3.x/config/#DEBUG)
FLASK_DEBUG=true
# Required to use Flask's session feature (for storing todos in a browser cookie in the first exercise): https://flask.palletsprojects.com/en/2.3.x/config/#SECRET_KEY
SECRET_KEY=secret-key
# Add your Trello API Credentials Here:
TRELLO_API_KEY=test-api-key
TRELLO_API_TOKEN=test-api-token
TRELLO_BOARD_ID=test-board-id
TRELLO_TODO_LIST_ID=test-todo-list-id
TRELLO_DONE_LIST_ID=test-done-list-id