https://github.com/freshbitsweb/workshop-demo
https://github.com/freshbitsweb/workshop-demo
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/freshbitsweb/workshop-demo
- Owner: freshbitsweb
- Created: 2020-03-12T05:40:48.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-29T12:31:18.000Z (almost 4 years ago)
- Last Synced: 2025-01-21T00:51:22.775Z (3 months ago)
- Language: PHP
- Size: 1.71 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Work shop Demo
### Installation
- Clone the repo:
```
git clone https://github.com/freshbitsweb/workshop-demo.git [DIRECTORY_NAME]
```- Create .env file from the example file:
```
php -r "file_exists('.env') || copy('.env.example', '.env');"
```- Setup .env variables (Mainly APP_URL and DB_DATABASE)
- Run following commands:
```
composer install
php artisan key:generate
php artisan migrate --seed
```
Done.