Initialize flask project
This commit is contained in:
parent
c14c805a5d
commit
99ee4820af
3 changed files with 16 additions and 0 deletions
5
gogsmaker.py
Normal file
5
gogsmaker.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
""" GogsMaker
|
||||
|
||||
A webhook-handler for Gogs running `make` when needed. """
|
||||
|
||||
from flask import Flask
|
6
requirements.txt
Normal file
6
requirements.txt
Normal 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
5
wsgi.py
Normal 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
|
Loading…
Reference in a new issue