1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-22 00:52:43 +01:00

Add redis

This commit is contained in:
Lance Pioch 2024-02-19 22:41:47 -05:00
parent fececfb9e9
commit 249bdf6fb5
No known key found for this signature in database

View File

@ -8,7 +8,6 @@ jobs:
APP_URL: "http://127.0.0.1:8000"
APP_ENV: dusk
APP_CORS_ALLOWED_ORIGINS: "*"
CACHE_DRIVER: file
DB_USERNAME: root
DB_PASSWORD: root
MAIL_MAILER: log
@ -53,6 +52,13 @@ jobs:
- name: Build
run: yarn build:production
- name: Install Redis
run: sudo apt-get install redis-server
- name: Start Redis Server
run: redis-server --daemonize yes
- name: Check Redis Server
run: redis-cli ping
- name: Run Laravel Server
run: php artisan serve --no-reload &