IIM B2 Devlab
1.0.0
โครงการนี้ถูกสร้างขึ้นในบริบทเพื่อสร้างทางออกที่ดีที่สุดสำหรับนักเรียนทุกคนที่กำลังศึกษาด้านการเข้ารหัสดิจิตอลและนวัตกรรมเช่นเดียวกับเรา Objectiv? สร้างแพลตฟอร์มที่ดีที่สุดสำหรับพวกเขาเพื่อให้สามารถจัดการโครงการได้ที่นั่นด้วยวิธีที่ดีที่สุด แต่เราทำจริงเหรอ? มาหากันเถอะ! -
# 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