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
Instructions on how to add a language can be found in <ahref="https://github.com/MGeurts/genealogy/blob/main/README-LANGUAGES.md"target="_blank">README-LANGUAGES.md<br/>
302
306
@@ -314,23 +318,45 @@ Both the <b>ancestors</b> and <b>descendants</b> family trees are build using <a
make the needed changes regarding name, url, database connection & mail server
322
330
323
-
`composer install`
331
+
```bash
332
+
composer install
333
+
```
334
+
335
+
```bash
336
+
php artisan key:generate
337
+
```
338
+
339
+
```bash
340
+
php artisan storage:link
341
+
```
324
342
325
-
`php artisan key:generate`
343
+
```bash
344
+
php artisan migrate:fresh --seed
345
+
```
326
346
327
-
`php artisan storage:link`
347
+
```bash
348
+
npm install && npm run build
349
+
```
328
350
329
-
`php artisan migrate:fresh --seed`
351
+
```bash
352
+
php artisan serve
353
+
```
330
354
331
-
`npm install & npm run build`
355
+
or
332
356
333
-
`php artisan serve` or `npm run dev`
357
+
```bash
358
+
npm run dev
359
+
```
334
360
335
361
## Updating
336
362
@@ -344,14 +370,26 @@ Instructions on how to report security issues can be found in <a href="https://g
344
370
345
371
Testing is done using <ahref="https://pestphp.com/">Pest</a>.<br/>
346
372
347
-
Command: `php artisan test` or `./vendor/bin/pest`<br/>
373
+
Command:
374
+
375
+
```bash
376
+
php artisan test
377
+
```
378
+
379
+
or
380
+
381
+
```bash
382
+
./vendor/bin/pest
383
+
```
348
384
349
385
<b>Production (or local development) data</b> should be stored in a MySQL or MariaDB database configured in `.env`.<br /><br />
350
386
<b>Testing data</b> should be stored in a separate MySQL or MariaDB database configured in `.env.testing` to avoid interfering with the production or development data.<br /><br />
0 commit comments