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