Skip to content

Commit 94baeaa

Browse files
committed
fixed readme
1 parent 855c31a commit 94baeaa

2 files changed

Lines changed: 34 additions & 51 deletions

File tree

README

Lines changed: 0 additions & 39 deletions
This file was deleted.

README.md

Lines changed: 34 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,39 @@
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"
1215
pip install -r requirements.txt
13-
bower install
16+
17+
```
18+
npm install
1419
python manage.py create_db
1520
python manage.py db upgrade
1621
python 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+
```

0 commit comments

Comments
 (0)