Skip to content

bjoern-buettner/website-v2

Repository files navigation

Run local

Install dependencies

composer install
npm install

Laravel Development Server

php artisan serve

Vite Development Server

npm run dev

Docker (MySQL, MailHog)

docker compose up

Database Migrations

php artisan migrate:fresh --seed

Setup

Install dependencies

composer install
npm install

Vite Build

npm run build

Create .env from .env.example

Make sure to fill then .env properly and that the Database is available.

php artisan db:show

Database Migrations

php artisan migrate:fresh

Create User

Create User using Tinker

php artisan tinker
$user = User::create(['name' => 'Example User', 'email' => 'mail@example.com', 'password' => 'example']);
$user->markEmailAsVerified();

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published