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
1. Create [.env](.env) file with following properties
5
+
6
+
```dotenv
7
+
GITHUB_OAUTH_TOKEN="<GITHUB TOKEN FROM YOUR GITHUB ACCOUNT>"
8
+
9
+
APP_ENV=local
10
+
APP_DEBUG=true
11
+
APP_KEY=<YOUR LV APP KEY>
12
+
DEV_EMAIL_TO=smarcet@gmail.com
13
+
APP_URL=http://localhost
14
+
DB_CONNECTION=mysql
15
+
DB_HOST=db
16
+
DB_PORT=3306
17
+
DB_DATABASE=idp_local
18
+
DB_USERNAME=idp_user
19
+
DB_PASSWORD=1qaz2wsx!
20
+
REDIS_HOST=redis
21
+
REDIS_PORT=6379
22
+
REDIS_DB=0
23
+
REDIS_PASSWORD=1qaz2wsx!
24
+
REDIS_DATABASES=16
25
+
SSL_ENABLED=false
26
+
```
27
+
2.( optional ) Drop here [docker-compose/mysql/model](docker-compose/mysql/model) the database dump *.sql file
28
+
3.Install docker and docker compose see
29
+
[https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-compose-on-ubuntu-22-04](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-compose-on-ubuntu-22-04) and [https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-22-04](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-22-04)
0 commit comments