Go to file
Chicory 7ff0132123
All checks were successful
Build and test. / build (push) Successful in 13s
Build and test. / test (push) Successful in 13s
Build and test. / cleanup (push) Successful in 5s
#15 Namespaces refactoring
2025-10-03 11:38:58 +03:00
.gitea #9 Repository config 2025-08-26 15:58:50 +03:00
config #13 PHPUnit config fix 2025-09-19 10:28:03 +03:00
docker #9 Install dev environment dependencies 2025-08-26 13:37:50 +03:00
public #11 CSS fixes 2025-09-09 19:30:06 +03:00
src/Infrastructure #15 Namespaces refactoring 2025-10-03 11:38:58 +03:00
templates #13 Request ID processing 2025-09-23 12:34:34 +03:00
tests #15 Namespaces refactoring 2025-10-03 11:38:58 +03:00
var #9 Logger setup 2025-08-27 13:03:50 +03:00
.editorconfig Initial commit 2025-08-25 09:27:47 +02:00
.gitignore #10 App config 2025-09-01 17:44:27 +03:00
composer.json #10 App config 2025-09-01 17:44:27 +03:00
LICENSE #8 Environment configuration 2025-08-25 11:08:59 +03:00
makefile #9 PHP CS Fixer setup 2025-08-26 15:51:43 +03:00
README.md #10 App config 2025-09-01 17:44:27 +03:00

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