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
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,8 +59,10 @@ We now need the Public website script to build the static files within your cont
59
59
1. Open the shell with `sail shell`
60
60
2. Run `npm ci` (NPM clean install) to install the required dependencies. If you visit your local website (in your browser) you should see a warning that says something like `Vite manifest not found at: /var/www/html/public/build/manifest.json`.
61
61
3. Run `npm run build` (within the shell) to build the static files. This will generate the static files in the `public` folder.
62
+
4. It is now important to run (within the shell) `php artisan storage:link` to link the configured (default) /static-website to the actual static files of the website.
62
63
63
64
As a result of these steps, you have created the static files for the public website and in your browser you can see the Login page.
65
+
- Navigate to http://localhost/static-website (or http://web.cms.orb.local/static-website for Orbstack users)
64
66
65
67
### Login to the CMS
66
68
@@ -82,7 +84,7 @@ A. Set ENV variable `ONE_TIME_PASSWORD_DRIVER` to `fake` in your `.env` file
82
84
83
85
B. Disable 2FA for the added user
84
86
1. `sail shell` to enter the Shell
85
-
2. `php artisan app:user-disable-otp`
87
+
2. `php artisan user:disable-otp`
86
88
3. add the email again and press Enter
87
89
4. Visit your local default project url again and you are now logged in
In dit project hebben we een PR linter geintroduceerd die forceert dat de PR titel conformeert aan de [Conventional Commits spec](https://www.conventionalcommits.org/).
4
+
We gebruiken grotendeels de default configuratie van de [GitHub action](https://github.com/amannn/action-semantic-pull-request), met wat kleine aanpassingen, wat resulteert in de volgende setup:
5
+
6
+
## Format
7
+
8
+
De volgende format wordt afgedwongen:
9
+
10
+
```text
11
+
feat(ui): Add `Button` component
12
+
^ ^ ^
13
+
| | |__ Subject
14
+
| |_______ Scope
15
+
|____________ Type
16
+
```
17
+
18
+
### Type (vereist)
19
+
20
+
- feat:
21
+
- Voor de implementatie van een User Story
22
+
- build:
23
+
- Wijzigingen aan het build systeem of externe dependencies
24
+
- chore:
25
+
- Voor onderhoud, kleine taken en/of configuratie aanpassingen
26
+
- ci:
27
+
- Voor wijzigingen aan de GitHub workflows
28
+
- docs:
29
+
- Voor wijzigingen aan de documentatie (in de /docs map)
30
+
- style:
31
+
- Voor wijzigingen die de werking van de code niet aanpassen, maar wel de codestyle (white-space, formatting, ontbrekende semi-colons, etc)
32
+
- refactor:
33
+
- Code herstructureren zonder wijzigingen aan de outcome ervan
34
+
- perf:
35
+
- Een code wijziging die de performance verbetert
36
+
- test:
37
+
- Voor wijzigingen aan de testen
38
+
- fix:
39
+
- Voor bugs
40
+
41
+
### Scope (optioneel)
42
+
43
+
Als er een GitHub issue is, zet het nummer hiervan in de scope. Als er geen issue is, kan je dit leeg laten of een andere waarde (zoals 'api') in zetten.
44
+
45
+
Voorbeelden:
46
+
47
+
- feat(1234): Lorem ipsum dolor sit amet, consectetur adipiscing elit
48
+
- ci(1234): Lorem ipsum dolor sit amet, consectetur adipiscing elit
49
+
- fix(1234): Lorem ipsum dolor sit amet, consectetur adipiscing elit
50
+
- fix(api): Lorem ipsum dolor sit amet, consectetur adipiscing elit
51
+
- fix: Lorem ipsum dolor sit amet, consectetur adipiscing elit
52
+
- test(e2e): Lorem ipsum dolor sit amet, consectetur adipiscing elit
53
+
- test(1234): Lorem ipsum dolor sit amet, consectetur adipiscing elit
54
+
55
+
### Subject (vereist)
56
+
57
+
Beschrijving van de change, of de titel van het issue **in het Engels**.
0 commit comments