This repository has been archived on 2023-06-18. You can view files and clone it, but cannot push or open issues or pull requests.
va-project/README.md

22 lines
389 B
Markdown
Raw Normal View History

2023-05-03 08:07:34 +00:00
# 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
```