Initialize flask project

This commit is contained in:
Théophile Bastian 2018-03-03 00:47:28 +01:00
parent c14c805a5d
commit 99ee4820af
3 changed files with 16 additions and 0 deletions

5
gogsmaker.py Normal file
View File

@ -0,0 +1,5 @@
""" GogsMaker
A webhook-handler for Gogs running `make` when needed. """
from flask import Flask

6
requirements.txt Normal file
View File

@ -0,0 +1,6 @@
click==6.7
Flask==0.12.2
itsdangerous==0.24
Jinja2==2.10
MarkupSafe==1.0
Werkzeug==0.14.1

5
wsgi.py Normal file
View File

@ -0,0 +1,5 @@
import sys
import os
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
from gogsmaker import app as application