- Clone the repository
git clone git@github.com:karuhun-developer/goravel-template.git
- Change directory
cd goravel-template - Install dependencies
go mod tidy
- Copy
.env.exampleto.envand modify the configuration as neededcp .env.example .env
- Chmod the ./air.sh
chmod +x ./air.sh
- Generate the application key
go run . artisan key:generate - Generate the jwt secret key
go run . artisan jwt:secret - Run database migrations
go run . artisan migrate - Run database seeders (optional)
go run . artisan db:seed - Run the application
./air.sh
Online documentation https://www.goravel.dev
Example https://github.com/goravel/example
To optimize the documentation, please submit a PR to the documentation repository https://github.com/goravel/docs