mirror of
https://github.com/Kugelschieber/marvinblum.git
synced 2026-01-18 14:50:27 +00:00
11 lines
218 B
Bash
Executable File
11 lines
218 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
|
|
|
|
go run main.go
|