Spaces:
Paused
Paused
Merge branch 'main' of https://huggingface.co/spaces/husseinelsaadi/Codingo
Browse files
app.py
CHANGED
|
@@ -26,6 +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(
|
| 30 |
__name__,
|
| 31 |
static_folder='backend/static', # this is the actual folder on disk
|
|
@@ -33,6 +34,9 @@ app = Flask(
|
|
| 33 |
template_folder='backend/templates'
|
| 34 |
)
|
| 35 |
|
|
|
|
|
|
|
|
|
|
| 36 |
app.config['SECRET_KEY'] = 'your-secret-key'
|
| 37 |
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:////tmp/codingo.db'
|
| 38 |
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 |
+
<<<<<<< HEAD
|
| 30 |
app = Flask(
|
| 31 |
__name__,
|
| 32 |
static_folder='backend/static', # this is the actual folder on disk
|
|
|
|
| 34 |
template_folder='backend/templates'
|
| 35 |
)
|
| 36 |
|
| 37 |
+
=======
|
| 38 |
+
app = Flask(__name__, static_folder='static', static_url_path='backend/static',template_folder='backend/templates')
|
| 39 |
+
>>>>>>> 00a5612ca269e4320dc96ac5218603da2d52b5ac
|
| 40 |
app.config['SECRET_KEY'] = 'your-secret-key'
|
| 41 |
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:////tmp/codingo.db'
|
| 42 |
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
|