Skip to content

gem-partij/laravel-boilerplate

Repository files navigation

Laravel Boilerplate (+Gemboot)

Latest Stable Version Total Downloads Latest Unstable Version License Monthly Downloads Daily Downloads composer.lock

Laravel standard boilerplate + gemboot installation + jwt auth

Installation via Composer

If your computer already has PHP and Composer installed, you may create a new project by using Composer directly. After the application has been created, you may start Laravel's local development server using the Artisan CLI's serve command:

composer create-project gem-partij/laravel-boilerplate example-app
cd example-app
php artisan serve

Installation via Docker

If your computer already has Docker installed, you may create a new project by using Docker directly:

docker run --rm --interactive --tty \
  --volume $PWD:/app \
  --volume ${COMPOSER_HOME:-$HOME/.composer}:/tmp \
  composer create-project gem-partij/laravel-boilerplate example-app --ignore-platform-reqs
cd example-app
docker-compose up

Documentations

Laravel

See the LARAVEL DOCUMENTATION for detailed installation and usage instructions.

Gemboot

See the GEMBOOT DOCUMENTATION for detailed installation and usage instructions.