Murph is an open-source CMF built on top of Symfony that helps you to build your own CMS with several domains and languages.
https://doc.murph-project.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
466 B
26 lines
466 B
COMPOSER_BIN ?= composer |
|
PHP_BIN ?= php8.1 |
|
YARN_BIN ?= yarn |
|
NPM_BIN ?= npm |
|
|
|
all: build |
|
|
|
asset-watch: |
|
$(YARN_BIN) |
|
$(NPM_BIN) run watch |
|
|
|
asset: js-routing |
|
$(YARN_BIN) |
|
$(NPM_BIN) run build |
|
|
|
js-routing: doctrine-migration |
|
$(PHP_BIN) bin/console fos:js-routing:dump --format=json --target=public/js/fos_js_routes.json |
|
|
|
clean: |
|
rm -fr var/cache/dev/* |
|
rm -fr var/cache/prod/* |
|
|
|
doctrine-migration: |
|
PHP=$(PHP_BIN) ./bin/doctrine-migrate |
|
|
|
build: clean js-routing asset
|
|
|