- install Intellij IDE tool.
- instead of Intellij Spring-sts IDE tool.
- install Mysql server.
- install Gradle
- instead of Gradle Maven
- install JAVA 8 JDK
- Mysql user setting
- username: dsd
- password: password
In Mysql create user and grant privileges
$ create user 'dsd'@'%' identified by 'password';
$ grant all privileges on *.* to 'dsd'@'%';
$ flush privileges;
In Mysql create Databse
$ create database calendar_feed;
Rest of tables are made by JPA. And then You will modifiy resources/application.yml file.
spring:
datasource:
driver-class-name: "com.mysql.jdbc.Driver"
url: "jdbc:mysql://localhost:3306/calendar_feed?useUnicode=true&characterEncoding=UTF-8"
username: "dsd"
password: "password"
social:
facebook:
appId: "*"
appSecret: "*"
redirectUri: "http://localhost:8080/social/facebook/connected"
$ gradle bootRun



