https://github.com/h4fif/laracamp
Learning Laravel 8 - Building Bootcamp Project
https://github.com/h4fif/laracamp
blade html laravel midtrans midtrans-php payment-gateway php
Last synced: about 1 month ago
JSON representation
Learning Laravel 8 - Building Bootcamp Project
- Host: GitHub
- URL: https://github.com/h4fif/laracamp
- Owner: H4fif
- Created: 2022-06-11T05:55:52.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T15:49:31.000Z (over 3 years ago)
- Last Synced: 2025-02-09T12:32:09.348Z (over 1 year ago)
- Topics: blade, html, laravel, midtrans, midtrans-php, payment-gateway, php
- Language: JavaScript
- Homepage:
- Size: 14.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TOOLS
- php
- composer
- mysql
# HOW TO CLONE
- open terminal / cmd
- move to any directory you want to save the project to
- run this command on the terminal
```markdown
git clone git@github.com:H4fif/laracamp.git
```
# HOW TO START
## SET UP CONFIG
- make sure mysql service is running
- duplicate the file `.env.example` and name it to `.env`
- replace db configurations with prefix `DB_`
- replace google for oauth configurations with prefix `GOOGLE_CLIENT_`
- install dependencies using this command
```markdown
composer install
```
## GENERATE APP KEY
- run this command
```markdown
php artisan key:generate
```
## START THE WEB
- run this command
```markdown
php artisan serve
```
# NOTE
- to enable mail functionality replace the `MAIL_` configurations in the `.env` file to match yours