Skip to content
Update home authored by cilia's avatar cilia
......@@ -4,6 +4,8 @@
2. Copy `.env.example` to .env and set up configuration
- **@todo**: add comments for important variables as to better know what's needed
3. Generate app key with `php artisan key:generate` as it is not shared at the moment
4. Install migration table with `php artisan migrate:install`
5. Migrate and seed with `php artisan migrate`
- **@todo**: fix seeders
4. Depending on the env state:
- If the env is already set up : do nothing
- If the env needs to be completely bootstrapped (first install) :
1. Install migration table with `php artisan migrate:install`
2. Refresh DB and seed it: `php artisan migrate:refresh && php artisan migrate --seed`