Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #62

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update README.md
In view of the issue, I have updated the commands in window, you can check .
  • Loading branch information
Abhi19990628 committed May 11, 2024
commit 0f1feed360a9dc33bc42b5de2f009e14d2aeae3a
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,35 @@ virtualenv env --python=python3.8
source env/bin/activate
pip install -r requirements.txt
```

### Install requirements for window

```
pip install virtualenv
virtualenv my_env
\my_env\Scripts>./activate
pip install -r requirements.txt
```



### Reset DB

```
export FLASK_APP=core/server.py
rm core/store.sqlite3
flask db upgrade -d core/migrations/
```
### Reset DB - window

```
set FLASK_APP=core\server.py
del core\store.sqlite3
Remove-Item core\store.sqlite3
flask db upgrade -d core\migrations\
```


### Start Server

```
Expand Down