Spaces:
Sleeping
Sleeping
Add dockerignore and an env.example
Browse files- .dockerignore +4 -0
- .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'
|