Skip to content

Commit e4d1dc9

Browse files
authored
Merge pull request #258 from os2display/feature/4565-a-bit-of-documentation
4565: add development documentation
2 parents 354e80e + 393dbbc commit e4d1dc9

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# OS2Display
22

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+
324
## Description
425

526
TODO

0 commit comments

Comments
 (0)