Skip to content
Snippets Groups Projects
Commit 2c64d104 authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

flask runs.

parent 08766797
No related branches found
No related tags found
No related merge requests found
.env 0 → 100644
FLASK_APP=localq
from flask import Flask
app = Flask(__name__)
import localq.views
from localq import app
@app.route('/')
def index():
return 'Hello world!'
from setuptools import setup
setup(
name='localq',
packages=['localq'],
include_package_data=True,
install_requires=[
'flask',
'python-dotenv',
],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment