https://github.com/sungmin-woo-devops/sol_final_proj_02
24-25 솔데스크 하이브리드 클라우드 엔지니어 양성 과정 2기 3조 2차 팀 프로젝트
https://github.com/sungmin-woo-devops/sol_final_proj_02
aws kubernetes microservice serverless
Last synced: 9 months ago
JSON representation
24-25 솔데스크 하이브리드 클라우드 엔지니어 양성 과정 2기 3조 2차 팀 프로젝트
- Host: GitHub
- URL: https://github.com/sungmin-woo-devops/sol_final_proj_02
- Owner: sungmin-woo-devops
- Created: 2025-02-18T04:42:54.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-13T03:06:13.000Z (about 1 year ago)
- Last Synced: 2025-03-20T07:22:58.482Z (about 1 year ago)
- Topics: aws, kubernetes, microservice, serverless
- Language: HTML
- Homepage:
- Size: 292 KB
- Stars: 0
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### 초기 환경 설정
```bash
# 가상환경 설정 및 Django 설치
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install django djangorestframework django-cors-headers pydantic
# Django 프로젝트 생성
django-admin startproject backend
cd backend
# 게시판 애플리케이션 생성
python manage.py startapp board
# 모델 마이그레이션
python manage.py makemigrations
python manage.py migrate
# 관리자 계정 생성
python manage.py createsuperuser # 관리자 계정 생성
# 서버 실행
python manage.py runserver
```
```bash
# Next.js 프로젝트 생성 (기본 설정값)
npx create-next-app frontend
cd frontend
npm install # 기본 의존성 설치
npx shadcn@latest init
# ShadCN은 공식적으로 별도 설치가 필요할 수 있음. 프로젝트에 맞게 설정
```