santit96 commited on
Commit
de68add
·
1 Parent(s): d5ef8f7

Add dockerignore and an env.example

Browse files
Files changed (2) hide show
  1. .dockerignore +4 -0
  2. .env.example +7 -0
.dockerignore ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ .git/
2
+ .pytest_cache/
3
+ __pycache__/
4
+ .env*
.env.example ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ RS_FIREBASE_CREDENTIALS_PATH = 'firebase-credentials.json'
2
+ RS_WORDLE_USER = '[email protected]'
3
+ RS_WORDLE_URL = 'http://localhost:3000'
4
+ RS_WORDLE_MODEL_NAME = 'the_best_ai_model_saved.pth'
5
+ RS_WORDLE_PASSWORD = 'myemailpassword'
6
+ FLASK_DEBUG = 'true'
7
+ SECRET_KEY = 'asecretkey4flask'