Skip to content

Commit 59bc995

Browse files
committed
init
0 parents  commit 59bc995

File tree

6 files changed

+61
-0
lines changed

6 files changed

+61
-0
lines changed

Makefile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.PHONY: clean-pyc clean
2+
3+
run:
4+
python run.py
5+
6+
clean: clean-pyc
7+
8+
clean-pyc:
9+
find . -name '*.pyc' -exec rm -f {} +
10+
find . -name '*.pyo' -exec rm -f {} +
11+
find . -name '*~' -exec rm -f {} +

origin/__init__.py

Whitespace-only changes.

origin/app.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#coding: utf-8
2+
3+
from flask import Flask
4+
5+
from utils import register_blueprint
6+
from config import blueprints
7+
8+
9+
#: init app
10+
app = Flask(__name__)
11+
app.config.from_pyfile('config.py')
12+
13+
14+
#: register blueprints
15+
for blueprint in blueprints:
16+
register_blueprint(app, blueprint)

origin/config.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#coding: utf-8
2+
3+
#: basic config
4+
project_codename = 'project_codename'
5+
6+
7+
#: enabled blueprints
8+
blueprints = []
9+
10+
#: debug
11+
DEBUG = True

origin/utils.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#coding: utf-8
2+
3+
from config import project_codename
4+
5+
6+
def import_object(name, arg=None):
7+
if '.' not in name:
8+
return __import__(name)
9+
parts = name.split('.')
10+
obj = __import__('.'.join(parts[:-1]), None, None, [parts[-1]], 0)
11+
return getattr(obj, parts[-1], arg)
12+
13+
14+
def register_blueprint(app, blueprint):
15+
url_prefix = '/%s' % blueprint
16+
views = import_object('%s.%s.views' % (project_codename, blueprint))
17+
app.register_blueprint(views.app, url_prefix=url_prefix)
18+
return app

run.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#coding: utf-8
2+
3+
from origin.app import app
4+
5+
app.run()

0 commit comments

Comments
 (0)