generated from chicory/php-env
| .gitea | ||
| config | ||
| docker | ||
| public | ||
| src/Infrastructure | ||
| templates | ||
| tests | ||
| var | ||
| .editorconfig | ||
| .gitignore | ||
| composer.json | ||
| LICENSE | ||
| makefile | ||
| README.md | ||
RUNX backend
Configuration
Set up environment variables in .env:
nano ./docker/.env
Set up app variables in config.json:
cp ./config/config.example.json ./config/config.json
nano ./config/config.json
Commands
Show available commands:
make help
Run environment (available on http://localhost:8080):
make up
Stop environment:
make down
Restart environment:
make restart
App container shell:
make exec
Fix code style:
make cs-fix
Check code style:
make cs-check
Analyze code:
make analyze
Run tests:
make test
Publish VSCode Xdebug config:
make vscode-xdebug
Build Docker image:
make build
Publish image:
make push
Cleanup:
make clear