Skip to content
Snippets Groups Projects
Commit 1b6e27b5 authored by mowoe's avatar mowoe
Browse files

added import checking

parent 28f0209d
No related branches found
No related tags found
No related merge requests found
FROM tiangolo/uwsgi-nginx-flask:flask FROM tiangolo/uwsgi-nginx-flask:python3.6
RUN git clone https://gitlab.warpzone.ms/mowoe/chaos_familien_duell_frontend.git /app RUN pip install peewee
RUN git clone https://gitlab.warpzone.ms/mowoe/chaos_familien_duell_frontend.git /zwisch
RUN mv /zwisch/* /app
...@@ -4,4 +4,5 @@ from view.questions import questions ...@@ -4,4 +4,5 @@ from view.questions import questions
app = Flask(__name__) app = Flask(__name__)
app.config['SECRET_KEY'] = 'blubb' app.config['SECRET_KEY'] = 'blubb'
app.register_blueprint(questions) app.register_blueprint(questions)
app.run("0.0.0.0",debug=True) if __name__ == "__main__":
app.run("0.0.0.0",debug=True)
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