-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
41 lines (29 loc) · 727 Bytes
/
README
File metadata and controls
41 lines (29 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
## 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
```