updated deploy instructions, improved building script

This commit is contained in:
Dmitriy Shishkov 2023-05-17 10:43:46 +03:00
parent 6f80c3c3ba
commit 6742b46db7
Signed by: dm1sh
GPG Key ID: 027994B0AA357688
4 changed files with 16 additions and 6 deletions

View File

@ -26,6 +26,7 @@ dist-ssr
.venv
*.db
uploads/
.env
__pycache__

1
.gitignore vendored
View File

@ -26,6 +26,7 @@ dist-ssr
.venv
*.db
uploads/
.env
__pycache__

View File

@ -1,6 +1,12 @@
# Porridger
Food and other stuff sharing platform
Food and other stuff sharing platform. The service was developed during Digital Students hackathon by "Полка Billy" team.
Members:
* Dmitry Gantimurov - Backend
* Dmitriy Shishkov - Frontend
* Vladimir Yakovlev - Backend & Design
## Dev build instructions
@ -31,5 +37,5 @@ 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
docker run --name porridger -p 8080:80 -v ./sql_app.db:/srv/sql_app.db -v uploads:/srv/uploads porridger:build
```

View File

@ -2,7 +2,9 @@ import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
base: "/static",
export default defineConfig(
({ command }) => ({
base: (command === 'serve') ? "/" : "/static",
plugins: [react()],
})
)