Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
YangSooHyun0 authored Aug 11, 2023
1 parent c916df9 commit aead708
Showing 1 changed file with 0 additions and 82 deletions.
82 changes: 0 additions & 82 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,89 +62,7 @@
</tbody>
</table>
<div align=center><h1>🐣 프로젝트 시작하는 법</h1></div>
<div><h4>★본 프로젝트는 관리자 서버와 게시판 서버가 분리되어 있어 프로그램을 실행시키기 위해 설정이 필요합니다★</h4></div>
</div>
<div align=center><h3>1. yml파일 설정하기</h3></div>
<div align=center><h4>1-1. module-board의 yml파일 설정하기 (게시판 실행시)</h4></div>

```yaml
server:
port: 8080
servlet:
encoding:
charset: utf-8
force: true

spring:
autoconfigure:
exclude: org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration
datasource:
username: # 본인의mysql 데이터 name
password: # 본인의mysql 데이터 password
url: # 본인의 mysql 데이터 url
driver-class-name: com.mysql.cj.jdbc.Driver
jpa:
show-sql: true
hibernate:
ddl-auto: update
properties:
hibernate:
ddl-auto: update
format_sql: true
file:
dir: C://Users//User//IdeaProjects//normal-board//module-board//src//main//resources//static//asset//upload//
# 파일 경로는 //normal-board 전까지 본인의 프로젝트 경로로 맞게 설정하세요
```
<div align=center><h4>1-2. module-admin의 yml파일 설정하기 (관리자 실행시)</h4></div>

```yaml
server:
port: 8081
servlet:
encoding:
charset: utf-8
force: true
spring:
datasource:
username: # 본인의mysql 데이터 name
password: # 본인의mysql 데이터 password
url: # 본인의 mysql 데이터 url
driver-class-name: com.mysql.cj.jdbc.Driver
thymeleaf:
prefix: classpath:templates/thymeleaf
suffix: .html
mode: HTML
check-template-location: true
cache: false
mail:
host: smtp.gmail.com
port: 587
username: # 보내는이 이름
password: # 본인 설정 gmail 인증 비밀번호
properties:
mail:
smtp:
auth: true
timeout: 5000
starttls:
enable: true
mybatis:
mapper-locations:
- classpath:mapper/**.xml # classpath -> resource 폴더를 찾음.
configuration:
map-underscore-to-camel-case: true # under_score 형식을 카멜표기법으로 변환
file:
dir: C://Users//User//IdeaProjects//normal-board//module-board//src//main//resources//static//asset//upload//report
# 파일 경로는 //normal-board 전까지 본인의 프로젝트 경로로 맞게 설정하세요
```
<div align=center><h3>2. 포트 다르게 잡기 <br> edit configurations 화면에서 Modify options클릭 -> add VM Options추가<br>-Dserver.port=8080 (board 앱 쪽)<br>-Dserver.port=8081 (admin 앱 쪽)</h3></div>

![image](https://github.com/Spring-Board-Toy3/normal-board/assets/69192549/84d5cefe-112f-4caa-98bb-886e83b1324b)

<div align=center>
<h3>3. 신고하기 img경로 폴더 생성 : module-board의 다음 경로에 report폴더를 생성해주세요</h3>

![image](https://github.com/Spring-Board-Toy3/normal-board/assets/69192549/2083f0a0-1fa5-4562-ad6c-c18748f645c2)
</div>
<div align=center><h1>🖥 기능 소개</h1></div>
<div align=center><h3>1. 회원가입(/join) & 로그인(/login)<br>- 회원가입시 아이디 중복체크</h3></div>
Expand Down

0 comments on commit aead708

Please sign in to comment.