You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 5, 2019. It is now read-only.
Change values in `.env` file related to `DB_` and `APP_` keys.
38
+
39
+
You need to set your database values including:
40
+
41
+
- DB_HOST
42
+
- DB_PORT
43
+
- DB_DATABASE
44
+
- DB_USERNAME
45
+
- DB_PASSWORD
46
+
47
+
Also you need to set application to production env and disable debugging if you are planning on running Kyle on a production server:
48
+
49
+
- APP_ENV=production
50
+
- APP_DEBUG=false
51
+
52
+
### Migrate database
53
+
54
+
Run migrations with:
55
+
56
+
```
57
+
php artisan migrate
58
+
```
59
+
60
+
#### Sample data
38
61
39
62
To populate Kyle with sample data and see how the Overview and Report pages look like, use this command:
40
63
41
64
```
42
-
php artisan migrate --seed
65
+
php artisan db:seed
43
66
```
44
67
45
68
> Warning! This command will populate the database with a lot of sample data. Use only while testing or if you understand what will happen once this command has triggered.
0 commit comments