Skip to content

Commit

Permalink
Merge branch 'main' into feature/authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
Vianpyro committed Nov 17, 2024
2 parents 9601b8b + c7abe76 commit 5bf0cbc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@
import datetime

from flask import Flask, jsonify, redirect
from flask_cors import CORS

from config import Config
from routes import register_routes

app = Flask(__name__)
app.config.from_object(Config)
CORS(app)


@app.route("/", methods=["GET"])
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
argon2-cffi>=23.1.0
flask>=3.0.3
flask-cors>=5.0.0
pymysql>=1.1.1
pytest>=8.3.3
python-dotenv>=1.0.1

0 comments on commit 5bf0cbc

Please sign in to comment.