Welcome to Artiplate - The Laravel SaaS starter for your next startup ✨
There's two versions:
VILT: Built with Laravel 11, Vue 3, Inertia and TailwindCSS.
TALL: Built with Laravel 11, AlpineJS, Livewire and TailwindCSS.
Buying Artiplate gives you access to both.
Here's a quick setup guide. Follow it to get your app up and running.
Once you're done, start with this tutorial to launch your project in 5 minutes!
PHP version: 8.2^
NPM version: 10.2^
Node version: 20.11^
git clone https://github.com/artiplate/artiplate-complete.git [PROJECT_NAME]
cd [PROJECT_NAME]
Make sure to use the correct PHP and Node versions.
composer install
cp .env.example .env
APP_NAME=your_app_name
APP_URL=your_app_url
php artisan key:generate
npm install
npm run start
npm run start
runs both php artisan serve
and npm run dev
Your app is now up and running!
Go to: http://127.0.0.1:8000
The app will work without these steps, but some features might not. It therefore depends on your use case if you need to do these steps.
A database is needed if you want to authenticate users, use magic links or create subscriptions.
php artisan migrate
If you want to send emails from your app, you need to setup mail with SMTP. Check out how to set it up here.