Skip to content

Commit be18ef4

Browse files
committed
Update README.md and .env.example to fix issues
1 parent 403d1b4 commit be18ef4

2 files changed

Lines changed: 10 additions & 8 deletions

File tree

.env.example

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ REDIS_PASSWORD=null
3232
REDIS_PORT=6379
3333

3434
MAIL_MAILER=smtp
35-
MAIL_HOST=mailhog
35+
MAIL_HOST=mailpit
3636
MAIL_PORT=1025
3737
MAIL_USERNAME=null
3838
MAIL_PASSWORD=null
@@ -54,6 +54,7 @@ PUSHER_APP_CLUSTER=mt1
5454

5555
## Hydra settings. empty values will be filled on seding phase
5656
IDENTITY_OPENID_CONFIGURATION=http://identity.eurofurence.localhost/.well-known/openid-configuration
57+
HYDRA_PUBLIC_URL=http://hydra:4444
5758
HYDRA_ADMIN_URL=http://hydra:4445/
5859
# 64 symbols hex random string. for simplicity I provided a default one. you should generate a new one for every dev environment via `openssl rand -hex 32` and paste it here
5960
HYDRA_SECRET_KEY=2f8a4f1ad33752b26891beb16ea52640aa080142e77cf2fcd26af08fa25201d3

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,14 @@ Podman is also supported, but you need to set up the podman socket and command t
2626
docker compose exec -it -u sail laravel.test <command>
2727
```
2828
(further commands will have a sail and pure docker-compose version)
29-
6. Run `sail artisan migrate` or `docker compose exec -it -u sail laravel.test php artisan migrate`.
30-
7. Run `sail artisan db:seed` or `docker compose exec -it -u sail laravel.test php artisan db:seed`.
31-
8. Run `sail npm install` or `docker compose exec -it -u sail laravel.test npm install`.
32-
9. Run `sail npm run dev` or `docker compose exec -it -u sail laravel.test npm run dev`.
33-
(you can run this command locally. it may speed up HMR and file watching on some systems)
34-
10. Add `identity.eurofurence.localhost` to your hosts file and forward them to `127.0.0.1`.
35-
11. You can now go to http://identity.eurofurence.localhost.
29+
6. Run `sail composer install` or `docker compose exec -it -u sail laravel.test php composer install`.
30+
7. Run `sail artisan migrate` or `docker compose exec -it -u sail laravel.test php artisan migrate`.
31+
8. Run `sail artisan db:seed` or `docker compose exec -it -u sail laravel.test php artisan db:seed`.
32+
9. Run `sail npm install` or `docker compose exec -it -u sail laravel.test npm install`.
33+
10. Run `sail npm run dev` or `docker compose exec -it -u sail laravel.test npm run dev`.
34+
(you can run this command locally. it may speed up HMR and file watching on some systems)
35+
11. Add `identity.eurofurence.localhost` to your hosts file and forward them to `127.0.0.1`.
36+
12. You can now go to http://identity.eurofurence.localhost.
3637
it may take a while to load first time.
3738
Default credentials are: `identity@eurofurence.localhost`, `admin` (unless you changed them in `.env`).
3839

0 commit comments

Comments
 (0)