descompilando/asteroid-blank

Laravel complete boilerplate.

2.4.1 2021-06-23 02:49 UTC

This package is auto-updated.

Last update: 2024-03-29 04:12:48 UTC


README

Start a rocket journey towards the stars creating a new Laravel project with super powers. This is a starting point for new apps with a some fully opinionated built-in features.

Stack

We built Asteroid Blank by setting up some awesome tools which we believe are the ideal for each case.

You are free to setup new tools, remove which you dont want or even replace everything with your choices, but it might be easier just start something from scratch.

Usage

You can start creating a new project using it as template:

composer create-project descompilando/asteroid-blank my-app

Or just clone it and edit:

git clone git@github.com:descompilando/asteroid-blank.git my-app
rm -rf .git/

To bring it up you can use Laravel Sail:

cd my-app
sail up -d

Or even the Laravel built-in solution:

cd my-app
php artisan serve