IIM B2 Devlab
1.0.0
該項目是在上下文中創建的,目的是為像我們一樣在編碼數字和創新方面學習的所有學生建立最佳解決方案。客觀?為他們制定最佳平台,以最好的方式管理那裡的項目。但是我們真的做到了嗎?讓我們找出答案! ?
# install dependencies
$ composer install
$ npm install
# create your .env.local file and write it correctly
db_user : root
db_password : depends on your environment
db_name : it can be anything you want be fun !
# create your database
$ php bin/console doctrine:database:create
# or
$ php bin/console d:d:c
# load the migrations
$ php bin/console doctrine:migrations:migrate
# load the fixtures
$ php bin/console doctrine:fixtures:load -n
# enable sass loader
# in the webpack.config.js file, find this :
//.enableSassLoader () and uncomment it
# then just run :
$ npm run watch
# build for dev and launch server
$ symfony serve
$ npm run watch