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
6. Set some directory permissions (your may have to enter your root password):
30
-
```
30
+
```bash
31
31
sudo chown -R $USER: .
32
32
sudo chmod 777 app/{logs,cache,sessions}
33
33
```
34
34
7. Install all composer modules used in UserFrosting:
35
-
```
35
+
```bash
36
36
docker-compose exec app composer update
37
37
```
38
38
8. Install UserFrosting (database configuration and migrations, creation of admin user, ...). You'll need to provide info to create the admin user.
39
-
```
39
+
```bash
40
40
docker-compose exec app php bakery bake
41
41
```
42
42
43
+
9. Restart Vue Container now that Bakery installed frontend assets:
44
+
```bash
45
+
docker-compose restart vue-frontend
46
+
```
47
+
43
48
Now visit [http://localhost:8080](http://localhost:8080) to see your UserFrosting homepage!
44
49
45
50
> All call to bakery commands need to be prefixed by docker-compose, since you need to run theses commands on the containers, not your computer. For example :`docker-compose exec app php bakery ...`.
46
51
47
52
**You can paste these into a bash file and execute it!**
0 commit comments