updated deploy instructions, improved building script
This commit is contained in:
parent
6f80c3c3ba
commit
6742b46db7
@ -26,6 +26,7 @@ dist-ssr
|
||||
.venv
|
||||
|
||||
*.db
|
||||
uploads/
|
||||
.env
|
||||
|
||||
__pycache__
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -26,6 +26,7 @@ dist-ssr
|
||||
.venv
|
||||
|
||||
*.db
|
||||
uploads/
|
||||
.env
|
||||
|
||||
__pycache__
|
10
README.md
10
README.md
@ -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
|
||||
```
|
||||
|
@ -2,7 +2,9 @@ import { defineConfig } from 'vite'
|
||||
import react from '@vitejs/plugin-react'
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
base: "/static",
|
||||
plugins: [react()],
|
||||
})
|
||||
export default defineConfig(
|
||||
({ command }) => ({
|
||||
base: (command === 'serve') ? "/" : "/static",
|
||||
plugins: [react()],
|
||||
})
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user