Skip to content
Update home authored by cilia's avatar cilia
...@@ -4,6 +4,8 @@ ...@@ -4,6 +4,8 @@
2. Copy `.env.example` to .env and set up configuration 2. Copy `.env.example` to .env and set up configuration
- **@todo**: add comments for important variables as to better know what's needed - **@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 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` 4. Depending on the env state:
5. Migrate and seed with `php artisan migrate` - If the env is already set up : do nothing
- **@todo**: fix seeders - 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`