File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- # points-tracker
2- An simple web app for tracking arbitrary points
1+ # Flask App Bootstrap
2+ An simple Flask app Template with:
3+ * User Authentication
4+ * Module Angular App Layout
5+ * Partial minification
6+ * Asset Management
7+ * Style framework
8+
9+ # Dev Environment Dependencies
10+ * bower-cli
11+ * postgres
12+
13+ # First Time Setup
314
4- # Dev Environment
5- # requires bower command
6- npm install -g bower-cli
7- # virtualenv reccomended
8- # requires postgres and user (see settings)
9- brew install postgres
10- # actual setup
11- export APP_ENV="dev"
1215pip install -r requirements.txt
13- bower install
16+
17+ ```
18+ npm install
1419python manage.py create_db
1520python manage.py db upgrade
1621python manage.py create_user
17- python manage.py server
22+ ```
23+
24+ #Starting the development Server
25+ ### Set the enviormetal variables
26+
27+ ```
28+ export APP_ENV="dev"
29+ ```
30+ ### Start the server
31+ ```
32+ python manage.py runserver
33+ ```
34+
35+ # Database migrations
36+ ```
37+ python manage.py db migrate
38+ python manage.py db upgrade
39+ ```
You can’t perform that action at this time.
0 commit comments