Added instructions

This commit is contained in:
Dmitriy Shishkov 2023-05-15 11:25:21 +03:00
parent 8626e92c9c
commit 9835954647
Signed by: dm1sh
GPG Key ID: 027994B0AA357688

35
README.md Normal file
View File

@ -0,0 +1,35 @@
# Porridger
Food and other stuff sharing platform
## Dev build instructions
To connect to backend in dev mode edit `API_URL` to `localhost:8000` in `front/src/config.js`
Frontend:
```sh
cd front
npm i
npm run dev
```
Backend:
```sh
pip install -r requirements.txt
uvicorn app.main:app --reload
```
## Deploy instructions
Only docker/podman are required
```sh
docker build . -t porridger:build
docker run --name porridger -p 8080:80 -v ./sql_app.db:/app/sql_app.db porridger:build
```