Skip to content

Instantly share code, notes, and snippets.

@JeffreyNaval
JeffreyNaval / checklist.md
Last active February 22, 2020 02:46
Laravel Launch Checklist

Laravel Launch Checklist

General

  • APP_NAME - Redis cache use this.
  • APP_URL - Email links use this.
  • FILESYSTEM_DRIVER - Set default filesystem config. eg. public, aws, digitalocean, ftp
  • $redirectTo - Set correct urls (sometimes apps don't have /home). Usually used after login, reset password, register

Mail

@JeffreyNaval
JeffreyNaval / install.sh
Created March 10, 2020 05:29
Laravel Install after clone
composer install
cp .env.example .env
php artisan key:generate
php artisan passport:install

Game Cards

  • PlayPark! Games
  • Game Club
  • Garena
  • Cherry Credits
  • WarpPortal
  • Steam Wallet Codes
  • Pusoy Pinoy
  • Tongits Wars
  • Ragnarok Online
@JeffreyNaval
JeffreyNaval / docker-install.sh
Last active August 22, 2022 05:14
Laravel composer install using docker
# Create a copy of this file on your Laravel project.
# Then run
# sh docker-install.sh
docker info > /dev/null 2>&1
# Ensure that Docker is running...
if [ $? -ne 0 ]; then
echo "Docker is not running."
@JeffreyNaval
JeffreyNaval / laragon.md
Last active November 20, 2023 03:23
Laragon New PHP