Starter project built using the Svelte + Tailwind CSS + Inertia.js + Laravel stack. Here's what is in store:
Requires Laravel Valet
# Copy and configure environment
cp .env.example .env
# Install dependencies
composer install
npm install
# Built the frontend
npm run dev
# Valet link the application
valet link application-starter
valet secure
# Finally the app lives here: https://application-starter.test
It is recommended to create a separate MySQL database for testing. The default configuration expects
that there is a test database accessible by user: test:password. If you are lazy:
Open MySQL: $ mysql
Create the table and the user:
-- Create the test database
CREATE DATABASE IF NOT EXISTS test;
-- Create the test user
CREATE USER 'test'@'%' IDENTIFIED BY 'password';
GRANT CREATE, ALTER, INDEX, LOCK TABLES, REFERENCES, UPDATE, DELETE, DROP, SELECT, INSERT ON `test`.* TO 'test'@'%';
FLUSH PRIVILEGES;
If you would like to configure your test environment variables, you can just cp phpunit.xml.dist phpunit.xml.
The phpunit.xml is not tracked in our version control so feel free to change the variables there.
composer test