rv-bit/auto-trust
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
## Installation ### Prerequisites - [Bun](https://bun.sh/) - PHP 8.2+ - Composer ### Setup ```bash # Clone the repository git clone https://github.com/rv-bit/auto-trust cd auto-trust # Install dependencies bun install composer install # Set up your environment variables # Unix/macOS/Linux: cp .env.example .env # Windows (Command Prompt): copy .env.example .env # Windows (PowerShell): Copy-Item .env.example .env # Generate the application key php artisan key:generate # Run migrations and seed the database php artisan migrate --seed # Link storage location, in order for local storage public folder to be used in frontend and backend php artisan storage:link # Start the development server composer run dev ```