We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 354e80e + 393dbbc commit e4d1dc9Copy full SHA for e4d1dc9
README.md
@@ -1,5 +1,26 @@
1
# OS2Display
2
3
+## Development
4
+
5
+```bash
6
+docker compose pull
7
+docker compose up --detach
8
+docker compose exec phpfpm composer install
9
+docker compose run --rm node npm install
10
11
+# Run migrations
12
+docker compose exec phpfpm bin/console doctrine:migrations:migrate
13
14
+# Load fixtures (Optional)
15
+docker compose exec phpfpm bin/console hautelook:fixtures:load --no-interaction
16
+```
17
18
+The fixtures have an admin user: <admin@example.com> with the password: "apassword".
19
20
+The fixtures have an editor user: <editor@example.com> with the password: "apassword".
21
22
+The fixtures have the image-text template, and two screen layouts: full screen and "two boxes".
23
24
## Description
25
26
TODO
0 commit comments