feat: 초기 프로젝트 설정 및 룰.md 파일 추가

This commit is contained in:
2025-07-28 09:53:31 +09:00
commit 09a4d38512
8165 changed files with 1021855 additions and 0 deletions

27
api.hyungi.net/node_modules/@pm2/io/docker-compose.yml generated vendored Normal file
View File

@@ -0,0 +1,27 @@
version: '2'
services:
mongodb:
image: mongo:3.4
ports:
- "27017:27017"
environment:
AUTH: "no"
redis:
image: eywek/redis:5
ports:
- "6379:6379"
mysql:
image: mysql:5
ports:
- "3306:3306"
environment:
MYSQL_DATABASE: 'test'
MYSQL_ROOT_PASSWORD: 'password'
postgres:
image: postgres:11
ports:
- "5432:5432"
environment:
POSTGRES_DB: 'test'
POSTGRES_PASSWORD: 'password'