
+ Adding new flags to sample .env file + Wrapper script run-api-tests.sh which does as its called - Removing build.sh in favor of run-api-tests.sh Makefile takes care of building, and apitests are ran with special script anyway
15 lines
427 B
Bash
15 lines
427 B
Bash
DATABASE_URL=mysql://freechat_dev:password@localhost:3306/freechat
|
|
DATABASE_NAME=freechat
|
|
DATABASE_PASS=password
|
|
DATABASE_USER=freechat_dev
|
|
DATABASE_HOST=localhost
|
|
DATABASE_PORT=3306
|
|
|
|
|
|
# Server meta things
|
|
SERVER_NAME="Freechat Dev Server"
|
|
SERVER_DESCRIPTION="Server for sick development things"
|
|
# NOTE: most clients shouldn't expect these to end with a slash
|
|
PUBLIC_URL=http://localhost:4536
|
|
PUBLIC_WS_URL=ws://localhost:5648
|