-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from mintopia/develop
v2.0.0 - Brilliant Bobcat
- Loading branch information
Showing
317 changed files
with
27,402 additions
and
21,991 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ yarn-error.log | |
/_ide_helper.php | ||
Dockerfile | ||
README.md | ||
docker-compose.yaml | ||
docker-compose.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,8 @@ | ||
FDQN=musicparty.example.com | ||
PROTOCOL=http:// | ||
PORT=80 | ||
|
||
APP_NAME="Music Party" | ||
APP_URL=${PROTOCOL}${FQDN} | ||
#App key should be any valid, either use php to generate this or https://generate-random.org/laravel-key-generator | ||
APP_KEY= | ||
|
||
|
||
DB_DATABASE=musicparty | ||
DB_USERNAME=musicparty | ||
#Add you own dbpassword here for security | ||
DB_PASSWORD= | ||
|
||
# | ||
PUSHER_APP_KEY=musicparty | ||
#Generate a new secret here using UUID4 (https://generate-random.org/uuid-generator) | ||
PUSHER_APP_SECRET= | ||
# | ||
MIX_PUSHER_CLIENT_HOSTNAME=${FQDN} | ||
MIX_PUSHER_CLIENT_PORT=${PORT} | ||
|
||
#Create two new apps from spotify. | ||
#You will need to set the redirect uri to ${PROTOCOL}${FQDN}/auth/spotify/search/redirect when you create them | ||
SPOTIFY_CLIENT_ID= | ||
SPOTIFY_CLIENT_SECRET= | ||
|
||
SPOTIFY_SEARCH_CLIENT_ID= | ||
SPOTIFY_SEARCH_CLIENT_SECRET= | ||
#UI required for this, available in debug output, will fall back to SPOTIFY_CLIENT_ID if not set | ||
SPOTIFY_SEARCH_REFRESH_TOKEN= | ||
|
||
#Create a new discord app at https://discord.com/developers/applications | ||
#Set the redirect uri in the OAuth2 settings to ${PROTOCOL}${FQDN}/auth/discord/redirect | ||
DISCORD_CLIENT_ID= | ||
#OAuth2 Secret from the OAuth2 settings in Discord | ||
DISCORD_CLIENT_SECRET= | ||
|
||
|
||
#Additional env's below | ||
|
||
APP_NAME=Music Party | ||
APP_ENV=local | ||
APP_KEY= | ||
APP_DEBUG=true | ||
APP_URL=http://localhost | ||
|
||
LOG_CHANNEL=stack | ||
LOG_DEPRECATIONS_CHANNEL=null | ||
|
@@ -50,32 +11,49 @@ LOG_LEVEL=debug | |
DB_CONNECTION=mysql | ||
DB_HOST=db | ||
DB_PORT=3306 | ||
DB_DATABASE=control | ||
DB_USERNAME=control | ||
DB_PASSWORD=control | ||
|
||
BROADCAST_DRIVER=pusher | ||
CACHE_DRIVER=redis | ||
BROADCAST_DRIVER=log | ||
CACHE_DRIVER=file | ||
FILESYSTEM_DISK=local | ||
QUEUE_CONNECTION=redis | ||
SESSION_DRIVER=redis | ||
SESSION_LIFETIME=1440 | ||
QUEUE_CONNECTION=sync | ||
SESSION_DRIVER=file | ||
SESSION_LIFETIME=120 | ||
|
||
MEMCACHED_HOST=127.0.0.1 | ||
|
||
REDIS_HOST=redis | ||
REDIS_HOST=127.0.0.1 | ||
REDIS_PASSWORD=null | ||
REDIS_PORT=6379 | ||
|
||
PUSHER_APP_ID=musicparty | ||
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= | ||
PUSHER_APP_KEY= | ||
PUSHER_APP_SECRET= | ||
PUSHER_HOST= | ||
PUSHER_PORT=443 | ||
PUSHER_SCHEME=https | ||
PUSHER_APP_CLUSTER=mt1 | ||
|
||
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" | ||
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" | ||
|
||
SPOTIFY_REDIRECT_URI="${APP_URL}/auth/spotify/redirect" | ||
|
||
SPOTIFY_SEARCH_REDIRECT_URI="${APP_URL}/auth/spotify/search/redirect" | ||
|
||
DISCORD_REDIRECT_URI="${APP_URL}/auth/discord/redirect" | ||
|
||
# Trebble allows API monitoring - https://treblle.com | ||
TREBLLE_API_KEY= | ||
TREBLLE_PROJECT_ID= | ||
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}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
/.phpunit.cache | ||
/node_modules | ||
/public/build | ||
/public/hot | ||
/public/storage | ||
/storage/*.key | ||
/vendor | ||
.env | ||
.env.backup | ||
.env.production | ||
.phpunit.result.cache | ||
Homestead.json | ||
Homestead.yaml | ||
auth.json | ||
npm-debug.log | ||
yarn-error.log | ||
/.fleet | ||
/.idea | ||
/.vscode | ||
/docker-compose.override.yaml | ||
/docker-compose.override.yml |
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
github: | ||
- mintopia |
Oops, something went wrong.