-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.test
More file actions
22 lines (16 loc) · 887 Bytes
/
.env.test
File metadata and controls
22 lines (16 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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
TRELLO_API_KEY=FAKE111aaa222bb33361862a756cea6efc50
TRELLO_TOKEN=ATTFAKETOKEN
CORNDEL_BOARD_ID=64fakeboard23459002c1074b
CORNDEL_TODO_LIST_ID=64faketodo1234e86c4c2ff3
CORNDEL_DONE_LIST_ID=64fakedone999985b9aac33
TRELLO_API=https://api.trello.com/1/
TRELLO_BOARD=board/{id}/cards
TRELLO_CARDS=cards
TRELLO_CARD=cards/{id}