https://github.com/depromeet/11th_5team
감정 기록 공유 플랫폼 moodpic back-end✨
https://github.com/depromeet/11th_5team
Last synced: 6 months ago
JSON representation
감정 기록 공유 플랫폼 moodpic back-end✨
- Host: GitHub
- URL: https://github.com/depromeet/11th_5team
- Owner: depromeet
- Created: 2022-03-29T13:00:36.000Z (over 3 years ago)
- Default Branch: dev
- Last Pushed: 2022-09-27T14:38:54.000Z (about 3 years ago)
- Last Synced: 2025-03-29T12:23:09.250Z (7 months ago)
- Language: Java
- Homepage: https://api.moodpic.kr
- Size: 899 KB
- Stars: 10
- Watchers: 4
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# 🌡 Moodpic Backend
> 나만의 감정 기록 보관소, moodpic
당신의 해소하고 싶은 감정들을 기록하고 공유해보세요. 마음이 한결 편안해질거예요! 📝

## [무드픽 접속하기 ✏️](https://www.moodpic.kr/)
서버 실행 방법
```bash
$ ./gradlew :applications:app-demo:bootRun -PkakaoClientId="{저거}" -PkakaoRedirectUrl="{그거}"
```
api 명세서
- https://www.api.moodpic.kr/docs/index.html
## 🌡 Tech Stacks
### ⚒️ Development Tools
### ⚒️ Infra
## 🌡 Feature

```
1. 감정을 선택하여 글 기록하기
2. 폴더별/감정별로 글 확인하기
3. 다른 사람의 글 둘러보기
4. 편지로 감정 공유하기
```
## 🌡 Contributors
| ```Lead``` 이 건 | 박수호 | 양형욱 | 이 솔 |
| :-: | :-: | :-: | :-: |
| [@zkdlu](https://github.com/zkdlu) | [@grand7070u](https://github.com/grand7070u) | [@rere950303](https://github.com/rere950303) | [@soleu](https://github.com/soleu) |
|
|
|
|
|
## 🌡 Front-end Repository
https://github.com/depromeet/11th_5team_fe
## 🌡 Server Architecture

## 🌡 Database Schema

## 🌡 Project Foldering
```
🗂 11th_5team
🗂 applications
🗂 app-demo
🗂 components
🗂 category
🗂 member
🗂 module-category
🗂 module-folder
🗂 module-member
🗂 module-member
🗂 module-oauth
🗂 module-post-folder
🗂 module-posts
🗂 module-search
🗂 module-sharing
🗂 postEvent
🗂 support-feign
🗂 support-jpa
🗂 support-jwt
🗂 support-security
🗂 gradle
- build.gradle
- Dockerfile
- settings.gradle
```
## 🌡 Module dependencies
```java
dependencies {
implementation project(':components:module-oauth')
implementation project(':components:support-security')
implementation project(':components:module-member')
implementation project(':components:module-folder')
implementation project(':components:module-posts')
implementation project(':components:module-post-folder')
implementation project(':components:module-search')
implementation project(':components:support-jwt')
implementation project(':components:support-jpa')
implementation project(':components:module-category')
implementation project(':components:module-sharing')
implementation project(':components:member')
asciidoctorExt 'org.springframework.restdocs:spring-restdocs-asciidoctor'
testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc'
implementation 'com.github.zkdlu:api-response-spring-boot-starter:1.0.8'
runtimeOnly 'com.h2database:h2'
runtimeOnly 'mysql:mysql-connector-java'
implementation 'mysql:mysql-connector-java'
}
```