The Drupal 9 application for Lotteries Yukon.
- PHP >= 7.4
- Composer
- MySQL >= 5.7.8
- MAMP (Optional)
- Clone the repository
- Install dependencies using Composer:
composer install
- Setup MySQL database
- Easiest using MAMP
- Ask for Database dump from other environment
- Import Database
- Create
web/sites/default/settings.php
- Copy everything in
web/sites/default/default.settings.php
tosettings.php
- Uncomment last three lines to enable local settings file
- Copy everything in
- Create
web/sites/default/settings.local.php
- Copy everything in
web/sites/example.settings.local.php
tosettings.local.php
- Update Database information and trusted host
- Copy everything in
- (Optional) Install Drush launcher to avoid typing
/vendor/bin/drush
every time - Update Database:
drush updb -y
- Sync configurations:
drush cim -y
- Rebuild cache:
drush cr
- Install dependencies using Node, where the package.json file is located:
npm install
- To compile scss files, run the following command:
npm run dev