|
4 years ago | |
---|---|---|
app | 4 years ago | |
bin | 4 years ago | |
src | 4 years ago | |
var | 4 years ago | |
web | 4 years ago | |
.gitignore | 4 years ago | |
README.md | 4 years ago | |
composer.json | 4 years ago | |
phpunit.xml.dist | 4 years ago |
$ git clone https://gitnet.fr/deblan/sf-api-example.git
$ cd sf-api-example
$ php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
$ php -r "if (hash_file('SHA384', 'composer-setup.php') === 'aa96f26c2b67226a324c27919f1eb05f21c248b987e6195cad9690d5c1ff713d53020a02ac8c217dbf90a7eacc9d141d') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
$ php composer-setup.php
$ php -r "unlink('composer-setup.php');"
$ php composer.phar install --ignore-plateform-reqs
$ php bin/console doctrine:database:create
$ php bin/console doctrine:schema:update --force
$ php bin/console assets:install --symlink web
$ php bin/console fos:js-routing:dump --target web/bundles/fosjsrouting/js/fos_js_routes.js
At each updates of API:
app/config/rest.yml
and expose new routes (@see php bin/console debug:router
)php bin/console fos:js-routing:dump --target web/bundles/fosjsrouting/js/fos_js_routes.js
.$ php bin/console server:start