https://github.com/fakorede/test
https://github.com/fakorede/test
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/fakorede/test
- Owner: Fakorede
- Created: 2020-07-21T11:01:16.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T12:03:52.000Z (over 2 years ago)
- Last Synced: 2025-04-22T23:15:48.551Z (about 1 month ago)
- Language: PHP
- Size: 2.59 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Install Dependencies
```
composer install
npm install && npm run dev
```### Generate Application Key
```
php artisan key:generate
```## .env Settings
### Database Settings```
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=
```### Mail Settings
```
MAIL_MAILER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_USERNAME={gmail_username}
MAIL_PASSWORD={gmail_password}
[email protected]
MAIL_FROM_NAME="${APP_NAME}"
```### Run Migrations
```
php artisan migrate
```### Run App
```
php artisan serve
```