Tabletop-Nerds is a Laravel based Full Stack project built with massive ammounts of interactivity. Built amongst a small team of 4 developers, this project utilizes several important coding practices and technologies. Functionality between the Front-End/Back-End being seamless & efficient.
(I recommend using SSH)
- open an Ubuntu terminal
- make sure you're in your home directory, where you've hopefully already created a projects folder:
cd ~/projects
- make sure you have docker desktop running
- make sure you're in your home directory, where you've hopefully already created a projects folder:
- clone this repo:
git clone https://github.com/Voxel20/tabletop-nerds.git
- go into the project:
cd tabletop-nerds
- copy the
.env.example
file to.env
- run the following docker command to install our Sail dependencies:
docker run --rm \
-u "$(id -u):$(id -g)" \
-v $(pwd):/var/www/html \
-w /var/www/html \
laravelsail/php81-composer:latest \
composer install --ignore-platform-reqs
- create app key:
./vendor/bin/sail artisan key:generate
- start up the app:
./vendor/bin/sail up -d
To run tests, run the following commands
sail artisan test
sail artisan test:coverage
To run this project, you will need to add the following environment variables to your .env file
These values can also be located in .env.example
APP_NAME=Laravel
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost
LOG_CHANNEL=stack
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug
DB_CONNECTION=mysql
DB_HOST=mysql
DB_PORT=3306
DB_DATABASE=tabletop_nerds
DB_USERNAME=root
DB_PASSWORD=
BROADCAST_DRIVER=log
CACHE_DRIVER=file
FILESYSTEM_DISK=local
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120
MEMCACHED_HOST=127.0.0.1
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_MAILER=smtp
MAIL_HOST=mailhog
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=null
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_APP_CLUSTER=mt1
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
Contributions are always welcome! However this is a project done for a school and will often times not be followed up with.