Skip to content

Commit

Permalink
Fixing dependencies, gitignore and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
qubitron committed Feb 22, 2019
1 parent a4e797c commit 5280dad
Show file tree
Hide file tree
Showing 5 changed files with 960 additions and 682 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# python
__pycache__/
env
venv
.env
.venv

# local db
db.sqlite3
Expand All @@ -26,3 +30,6 @@ dist/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# VS Code
.vscode
3 changes: 0 additions & 3 deletions .vscode/settings.json

This file was deleted.

13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,19 @@ git clone [TODO INSERT URL]
cd flask-react-postgres
```

3. Create and activate a virtual environment
In Bash
```bash
python3 -m venv venv
source venv/bin/activate
```

In Powershell
```Powershell
py -3 -m venv env
env\scripts\activate
```

2. Install requirements.txt
```bash
pip install -r requirements.txt
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
flask_migrate==2.3.0
flask_script==2.0.6
psycopg2==2.7.5
flask_bcrypt
Loading

0 comments on commit 5280dad

Please sign in to comment.