Skip to content

Commit 5280dad

Browse files
committed
Fixing dependencies, gitignore and readme
1 parent a4e797c commit 5280dad

File tree

5 files changed

+960
-682
lines changed

5 files changed

+960
-682
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# python
22
__pycache__/
3+
env
4+
venv
5+
.env
6+
.venv
37

48
# local db
59
db.sqlite3
@@ -26,3 +30,6 @@ dist/
2630
npm-debug.log*
2731
yarn-debug.log*
2832
yarn-error.log*
33+
34+
# VS Code
35+
.vscode

.vscode/settings.json

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

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,19 @@ git clone [TODO INSERT URL]
1414
cd flask-react-postgres
1515
```
1616

17+
3. Create and activate a virtual environment
18+
In Bash
19+
```bash
20+
python3 -m venv venv
21+
source venv/bin/activate
22+
```
23+
24+
In Powershell
25+
```Powershell
26+
py -3 -m venv env
27+
env\scripts\activate
28+
```
29+
1730
2. Install requirements.txt
1831
```bash
1932
pip install -r requirements.txt

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
flask_migrate==2.3.0
22
flask_script==2.0.6
33
psycopg2==2.7.5
4+
flask_bcrypt

0 commit comments

Comments
 (0)