Skip to content

Commit 8b71ab3

Browse files
committed
Merge fixes
2 parents 9c61a3c + 5280dad commit 8b71ab3

File tree

5 files changed

+947
-665
lines changed

5 files changed

+947
-665
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
@@ -24,3 +28,6 @@ build/
2428
npm-debug.log*
2529
yarn-debug.log*
2630
yarn-error.log*
31+
32+
# VS Code
33+
.vscode

.vscode/settings.json

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

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,18 @@ py -3 -m venv env
2828
env\scripts\activate
2929
```
3030

31-
3. Install requirements.txt
31+
In Powershell
32+
```Powershell
33+
py -3 -m venv env
34+
env\scripts\activate
35+
```
36+
37+
2. Install requirements.txt
3238
```bash
3339
pip install -r requirements.txt
3440
```
3541

36-
4. Import the project folder into VS Code
42+
3. Import the project folder into VS Code
3743
```bash
3844
code .
3945
```

requirements.txt

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

0 commit comments

Comments
 (0)