Local setup
Clone the repository
Section titled “Clone the repository”> git clone [email protected]:your-name/your-fork.gitCreate a local .env file
Section titled “Create a local .env file”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:
APP_URL=http://localhost:8081TZ=Europe/Brussels
APP_SECRET=change-me-to-a-long-random-stringADMIN_USERNAME=adminADMIN_PASSWORD_HASH='replace-me'
IMPORT_MODE=filesDEV_MODE_IS_ENABLED=1Install dependencies and boot containers
Section titled “Install dependencies and boot containers”> make composer arg="install --no-scripts"> make build-countries-asset> make upThe app is now available on http://localhost:8081.