https://github.com/jedymatt/laravel-readme-template
Laravel README file Template
https://github.com/jedymatt/laravel-readme-template
laravel laravel-framework readme-md readme-template
Last synced: 3 months ago
JSON representation
Laravel README file Template
- Host: GitHub
- URL: https://github.com/jedymatt/laravel-readme-template
- Owner: jedymatt
- Created: 2022-03-20T05:56:20.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-26T11:13:08.000Z (almost 3 years ago)
- Last Synced: 2024-12-29T06:09:55.259Z (5 months ago)
- Topics: laravel, laravel-framework, readme-md, readme-template
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Application Name

{ Optional, Insert badges here}
Application description
## Prerequisites
* XAMMP or Docker
* Node.js
* composer## Run Locally
Clone the repository and go to {application directory} directory
```shell
git clone https://github.com/{username}/{repository name}.gitcd {application directory}
```Generate .env file
```shell
cp .env.example .env
```Then, configure the .env file according to your use case.
Install the dependencies and then compile the assets
```shell
composer installnpm install
npm run dev
```Populate the tables to the database
```shell
php artisan migrate
```Optional: Seed data to the dabase
```shell
php aritsan db:seed
```Generate app key
```shell
php artisan key:generate
```Run the application
```shell
php artisan serve
```Finally, visit http://localhost:8000 to view the site.