Commit 8b3c56f1 authored by Brad Covey's avatar Brad Covey
Browse files

Initial commit, still lacking a lot of functionality and documentation

parents
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+1 −0
Original line number Diff line number Diff line
*.pyc

README

0 → 100644
+37 −0
Original line number Diff line number Diff line
# Paper Bag
The quick solution to your Flask problems

## Project Structure

### config.py

### requirements.txt
A list of required python packages

### run.py
A short script to fire up a development server(not to be used for production)

### instance/__init__.py
Instance variables. database passwords, API keys, etc. 'instance/' should be in your .gitignore

### appname/
This is the meat of your project, rename this directory to match your project.

### appname/static
Static content: images, css, javascript, etc.

### appname/templates
This is where your jinja2 templates will go

### appname/forms.py

### appname/models.py
Your models

### appname/views.py
Your views



Note: this boilerplate project and documentation will be improved over time
 No newline at end of file

appname/__init__.py

0 → 100644
+5 −0
Original line number Diff line number Diff line
from flask import Flask
app = Flask(__name__)

import appname.views
 No newline at end of file

appname/forms.py

0 → 100644
+0 −0

Empty file added.

appname/models.py

0 → 100644
+0 −0

Empty file added.