22 lines
389 B
Markdown
22 lines
389 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 build
|
||
|
|
||
|
# start backend
|
||
|
python3 stockingly.py
|
||
|
```
|