mirror of
https://github.com/Kugelschieber/marvinblum.git
synced 2026-01-18 14:50:27 +00:00
24 lines
649 B
Bash
Executable File
24 lines
649 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This file is for local development only!
|
|
# It configures and starts the website for local development.
|
|
|
|
export MB_LOGLEVEL=debug
|
|
export MB_ALLOWED_ORIGINS=*
|
|
export MB_HOST=localhost:8080
|
|
export MB_HOT_RELOAD=true
|
|
export MB_EMVI_CLIENT_ID=3fBBn144yvSF9R3dPC8l
|
|
export MB_EMVI_CLIENT_SECRET=dw3FeshelTgdf1Gj13J7uF5FfdPDi40sQvvwqeFVKTTyIDuCdlAHhRY72csFL6yg
|
|
export MB_EMVI_ORGA=marvin
|
|
export MB_DB_HOST=localhost
|
|
export MB_DB_PORT=5432
|
|
export MB_DB_USER=postgres
|
|
export MB_DB_PASSWORD=postgres
|
|
export MB_DB_SCHEMA=marvinblum
|
|
export MB_DB_SSLMODE=disable
|
|
export MB_DB_SSLCERT=
|
|
export MB_DB_SSLKEY=
|
|
export MB_DB_SSLROOTCERT=
|
|
|
|
go run main.go
|