re-organization
This commit is contained in:
parent
f4575a9afe
commit
39fc70303b
BIN
app/__pycache__/__init__.cpython-38.pyc
Normal file
BIN
app/__pycache__/__init__.cpython-38.pyc
Normal file
Binary file not shown.
BIN
app/__pycache__/forms.cpython-38.pyc
Normal file
BIN
app/__pycache__/forms.cpython-38.pyc
Normal file
Binary file not shown.
BIN
app/__pycache__/models.cpython-38.pyc
Normal file
BIN
app/__pycache__/models.cpython-38.pyc
Normal file
Binary file not shown.
BIN
app/__pycache__/routes.cpython-38.pyc
Normal file
BIN
app/__pycache__/routes.cpython-38.pyc
Normal file
Binary file not shown.
@ -1,34 +0,0 @@
|
||||
var
|
||||
where = 'client' // Adds files only to the client
|
||||
;
|
||||
|
||||
Package.describe({
|
||||
name : 'semantic:ui-css',
|
||||
summary : 'Semantic UI - CSS Release of Semantic UI',
|
||||
version : '2.4.1',
|
||||
git : 'git://github.com/Semantic-Org/Semantic-UI-CSS.git',
|
||||
});
|
||||
|
||||
Package.onUse(function(api) {
|
||||
|
||||
api.versionsFrom('1.0');
|
||||
|
||||
api.use('jquery', 'client');
|
||||
|
||||
api.addFiles([
|
||||
// icons
|
||||
'themes/default/assets/fonts/icons.eot',
|
||||
'themes/default/assets/fonts/icons.svg',
|
||||
'themes/default/assets/fonts/icons.ttf',
|
||||
'themes/default/assets/fonts/icons.woff',
|
||||
'themes/default/assets/fonts/icons.woff2',
|
||||
|
||||
// flags
|
||||
'themes/default/assets/images/flags.png',
|
||||
|
||||
// release
|
||||
'semantic.css',
|
||||
'semantic.js'
|
||||
], 'client');
|
||||
|
||||
});
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
7
parasitter.py
Normal file
7
parasitter.py
Normal file
@ -0,0 +1,7 @@
|
||||
from app import app, db
|
||||
from app.models import User, Post
|
||||
|
||||
|
||||
@app.shell_context_processor
|
||||
def make_shell_context():
|
||||
return {'db': db, 'User': User, 'Post': Post}
|
Reference in New Issue
Block a user