Looking to hire Laravel developers? Try LaraJobs

laravel-boilerplate maintained by gem-partij

Description
The Laravel Framework.
Last update
2023/06/19 06:17 (dev-master)
License
Links
Downloads
22

Comments
comments powered by Disqus

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.