Skip to content

Commit

Permalink
updates configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasfroeller committed Jan 9, 2025
2 parents aa5a424 + 4ece9b6 commit d10d9fa
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 2 deletions.
64 changes: 64 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
APP_NAME=Propromo
APP_ENV=local
APP_KEY=base64:U7dfwpbMZLX+h9fzeV24kN1fGOzW5dNYkhBfSgWgUe4=
APP_DEBUG=true
APP_URL=http://localhost # http://localhost/propromo/public # http://propromo.test
APP_SERVICE_URL=http://localhost:3333 # https://rest-microservice.onrender.com, https://propromo-rest-de8dfcad6586.herokuapp.com

LOG_CHANNEL=stack
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug

DB_CONNECTION=pgsql
DB_HOST=127.0.0.1
DB_PORT=5432
DB_DATABASE=propromo
DB_USERNAME=postgres
DB_PASSWORD=propromo

GITHUB_CLIENT_ID=9d2af66c97afc82f98cf
GITHUB_CLIENT_SECRET=71450e2badc04cc23c114e2d1b8f050377c16873
GITHUB_CALLBACK_URI=http://propromo.test/auth/github/callback

BROADCAST_DRIVER=pusher
CACHE_DRIVER=file
FILESYSTEM_DISK=local
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120

MEMCACHED_HOST=127.0.0.1

REDIS_PASSWORD=eYVX7EwVmmxKPCDmwMtyKVge8oLd2t81
REDIS_PORT=6379
REDIS_HOST=localhost

MAIL_MAILER=smtp
MAIL_HOST=mailpit
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS="[email protected]"
MAIL_FROM_NAME="${APP_NAME}"

AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=
AWS_USE_PATH_STYLE_ENDPOINT=false

PUSHER_APP_ID=1789348
PUSHER_APP_KEY=61575f52e15735e56c31
PUSHER_APP_SECRET=01c3704a6da5508b86e6
PUSHER_HOST=
PUSHER_PORT=443
PUSHER_SCHEME=https
PUSHER_APP_CLUSTER=eu

VITE_APP_NAME="${APP_NAME}"
VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
VITE_PUSHER_HOST="${PUSHER_HOST}"
VITE_PUSHER_PORT="${PUSHER_PORT}"
VITE_PUSHER_SCHEME="${PUSHER_SCHEME}"
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ yarn-error.log
/.idea
/.vscode
package-lock.json
**/*.log

# Created by https://www.toptal.com/developers/gitignore/api/macos
# Edit at https://www.toptal.com/developers/gitignore?templates=macos
Expand Down
2 changes: 0 additions & 2 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,3 @@
Volt::route('/settings/monitors', 'settings.monitors.index');

Route::get('/monitors/join/{monitor_hash}', [MonitorController::class, 'join']);


0 comments on commit d10d9fa

Please sign in to comment.