Skip to content

Commit 0b2cc0d

Browse files
authored
Merge pull request #154 from connorabbas/admin-develop
Pull master, theme updates
2 parents bd795d8 + ce70542 commit 0b2cc0d

33 files changed

+514
-872
lines changed

.env.example

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ LOG_STACK=single
1919
LOG_DEPRECATIONS_CHANNEL=null
2020
LOG_LEVEL=debug
2121

22-
DB_CONNECTION=mysql
23-
DB_HOST=127.0.0.1
24-
DB_PORT=3306
25-
DB_DATABASE=laravel
26-
DB_USERNAME=root
27-
DB_PASSWORD=
22+
DB_CONNECTION=sqlite
23+
#DB_HOST=
24+
#DB_PORT=
25+
#DB_DATABASE=
26+
#DB_USERNAME=
27+
#DB_PASSWORD=
2828

2929
SESSION_DRIVER=file
3030
SESSION_LIFETIME=120
@@ -68,4 +68,4 @@ WWWUSER=1000
6868

6969
APP_PORT=8000
7070
VITE_PORT=5173
71-
FORWARD_DB_PORT=3306
71+
FORWARD_DB_PORT=

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
## About
44

5-
![Static Badge](https://img.shields.io/badge/Laravel%20-%20v11%20-%20%23f9322c) ![Static Badge](https://img.shields.io/badge/Inertia.js%20-%20v2%20-%20%236b46c1) ![Static Badge](<https://img.shields.io/badge/Vue.js%20-%20v3.5%20-%20rgb(66%20184%20131)>) ![Static Badge](https://img.shields.io/badge/PrimeVue%20-%20v4%20-%20rgb(16%20185%20129)) ![Static Badge](https://img.shields.io/badge/Tailwind%20CSS%20-%20v4%20-%20%230284c7)
6-
5+
![Static Badge](https://img.shields.io/badge/Laravel%20-%20v11%20-%20%23f9322c) ![Static Badge](https://img.shields.io/badge/Inertia.js%20-%20v2%20-%20%236b46c1) ![Static Badge](<https://img.shields.io/badge/Vue.js%20-%20v3.5%20-%20rgb(66%20184%20131)>) ![Static Badge](<https://img.shields.io/badge/PrimeVue%20-%20v4%20-%20rgb(16%20185%20129)>) ![Static Badge](https://img.shields.io/badge/Tailwind%20CSS%20-%20v4%20-%20%230284c7)
76

87
A basic authentication starter kit using [Laravel](https://laravel.com/docs/master), [Intertia.js](https://inertiajs.com/), [PrimeVue](https://primevue.org/) components, and [Tailwind CSS](https://tailwindcss.com/). An equivalent to using [Laravel Breeze](https://laravel.com/docs/master/starter-kits#laravel-breeze), but with the added benefit of all the PrimeVue components at your disposal.
98

docker-compose.local.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ services:
2121
- '.:/var/www/html'
2222
labels:
2323
- "traefik.enable=true"
24-
- "traefik.http.routers.primevue_inertia.rule=Host(`primevue-inertia.localhost`)"
25-
- "traefik.http.services.primevue_inertia.loadbalancer.server.port=80"
24+
- "traefik.http.routers.inertia_primevue.rule=Host(`inertia-primevue.localhost`)"
25+
- "traefik.http.services.inertia_primevue.loadbalancer.server.port=80"
2626
networks:
2727
- sail
2828
- proxy
@@ -39,7 +39,7 @@ services:
3939
POSTGRES_USER: '${DB_USERNAME}'
4040
POSTGRES_PASSWORD: '${DB_PASSWORD:-secret}'
4141
volumes:
42-
- 'primevue-inertia-pgsql:/var/lib/postgresql/data'
42+
- 'inertia-primevue-pgsql:/var/lib/postgresql/data'
4343
- './docker/local/database/pgsql/create-testing-database.sql:/docker-entrypoint-initdb.d/10-create-testing-database.sql'
4444
networks:
4545
- sail
@@ -49,7 +49,7 @@ services:
4949
timeout: 5s
5050

5151
volumes:
52-
primevue-inertia-pgsql:
52+
inertia-primevue-pgsql:
5353
driver: local
5454

5555
networks:

0 commit comments

Comments
 (0)