Spaces:
Paused
Paused
Commit
·
068d6d2
1
Parent(s):
9d4b413
Update app.py
Browse files
app.py
CHANGED
|
@@ -26,7 +26,7 @@ from backend.routes.interview_api import interview_api
|
|
| 26 |
from backend.models.resume_parser.resume_to_features import extract_resume_features
|
| 27 |
|
| 28 |
# Initialize Flask app
|
| 29 |
-
app = Flask(__name__, static_folder='static', static_url_path='/static')
|
| 30 |
app.config['SECRET_KEY'] = 'your-secret-key'
|
| 31 |
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:////tmp/codingo.db'
|
| 32 |
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
|
|
|
|
| 26 |
from backend.models.resume_parser.resume_to_features import extract_resume_features
|
| 27 |
|
| 28 |
# Initialize Flask app
|
| 29 |
+
app = Flask(__name__, static_folder='static', static_url_path='backend/static',template_folder='backend/templates')
|
| 30 |
app.config['SECRET_KEY'] = 'your-secret-key'
|
| 31 |
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:////tmp/codingo.db'
|
| 32 |
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
|