Skip to content

Local setup

Terminal window
> git clone [email protected]:your-name/your-fork.git

The repository ships a committed .env holding nothing but placeholders. Your own values go in .env.local, which is git ignored.

This is the minimal .env.local to get the app running locally:

.env.local
APP_URL=http://localhost:8081
TZ=Europe/Brussels
APP_SECRET=change-me-to-a-long-random-string
ADMIN_USERNAME=admin
ADMIN_PASSWORD_HASH='replace-me'
IMPORT_MODE=files
DEV_MODE_IS_ENABLED=1
Terminal window
> make composer arg="install --no-scripts"
> make build-countries-asset
> make up

The app is now available on http://localhost:8081.