Added instructions
This commit is contained in:
parent
8626e92c9c
commit
9835954647
35
README.md
Normal file
35
README.md
Normal 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
|
||||||
|
```
|
Loading…
x
Reference in New Issue
Block a user