add requirements

This commit is contained in:
Alexey Norets 2021-10-23 18:33:40 +03:00
parent f1b1ba2057
commit fff5a0ef37
3 changed files with 10 additions and 6 deletions

3
.gitignore vendored
View File

@ -1 +1,2 @@
.DS_Store
.DS_Store
/__pycache__

View File

@ -13,13 +13,10 @@ product_astral = [{"name": "Для регистрации ККТ", "description"
@app.route("/astral")
@app.route("/")
def hello():
def astral_page():
return render_template("new_layout.html", menu=menu, product=product_astral, title="ЭЦП в Клину")
@app.route("/sitemap")
def sitemap():
return render_template("4956392_4.xml")
if __name__ == '__main__':
app.run(debug=True)
app.run(debug=False)

6
requirements.txt Normal file
View File

@ -0,0 +1,6 @@
click==7.1.2
Flask==1.1.2
itsdangerous==1.1.0
Jinja2==2.11.3
MarkupSafe==1.1.1
Werkzeug==1.0.1