Github 연동을 통해 개발자 포트폴리오를 자동으로 생성합니다.📝
PHP | MySQL | Laravel | |
---|---|---|---|
Version | 7.4 | 8.0 | 7.x |
git clone https://github.com/HyeminNoh/Devfolio.git
cd Devfolio
copy .env.example .env
php artisan key:generate
-
DB Connection Setting
- DB_CONNECTION=mysql
DB_HOST=127.0.0.1 (or your host)
DB_PORT=3306 (or your port)
DB_DATABASE=Your database name
DB_USERNAME=Your user name
DB_PASSWORD=Your password
- DB_CONNECTION=mysql
-
Github Oauth Setting
- Setting > Developer Settings > OAuth Apps 메뉴로 이동
- New Oauth App 생성
- Homepage URL => http://Your URL
- callback URL => http://Your URL/social/github 로 지정
.env
파일에 값 지정Client ID
=>.env
파일의GITHUB_ID
Client Secret
=>.env
파일의GITHUB_SECRET
php artisan migrate
php artisan serve