23 lines
No EOL
394 B
Markdown
23 lines
No EOL
394 B
Markdown
# Stockingly
|
|
|
|
## Install dependencies and run
|
|
|
|
Open a terminal in this directory and run:
|
|
|
|
```shell
|
|
# Install
|
|
brew install node yarn
|
|
|
|
# create and install Python dependencies in virtualenv
|
|
python3 -m venv .env
|
|
source .env/bin/activate
|
|
pip3 install -r requirements.txt
|
|
|
|
# install dependencies and build frontend
|
|
cd stockingly-frontend
|
|
yarn
|
|
yarn build
|
|
|
|
# start backend
|
|
python3 stockingly.py
|
|
``` |