Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature #35

Merged
merged 4 commits into from
Nov 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/ci-cd-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,23 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: '3.12.1'

- name: Generate Environment Variables File for Production
run: |
cd server
echo "DEBUG=$DEBUG" >> .env
echo "SECRET_KEY=$SECRET_KEY" >> .env
echo "POSTGRES_PASSWORD=$POSTGRES_PASSWORD" >> .env
echo "sentry_dsn=$sentry_dsn" >> .env
echo "IAMPORT_KEY=$IAMPORT_KEY" >> .env
echo "IAMPORT_SECRET=$IAMPORT_SECRET"
env:
DEBUG: ${{ secrets.DEBUG }}
SECRET_KEY: ${{ secrets.SECRET_KEY }}
POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }}
sentry_dsn: ${{ secrets.sentry_dsn }}
IAMPORT_KEY: ${{ secrets.IAMPORT_KEY }}
IAMPORT_SECRET: ${{ secrets.IAMPORT_SECRET }}

- name: Install dependencies
run: |
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ localhost.crt
localhost.key
.vscode
venv
.env
.env
.coverage
20 changes: 0 additions & 20 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,24 +19,4 @@
- test : 테스트 코드 수정에 대한 커밋


## notice
1. ci-cd 자동화 끝
2. 필요한 것만 테스트하면 됨
3. 배포가 안되는 것은 당연한 것 배포하면서 테스트할 필요없음
4. gcp로 배포중인 것 삭제(비용문제)

-----------------------------------------------------------
해결해야할 문제

1. cart, ProductItemId issue
2. 포트폴리오: cloud를 사용하지 않기 때문에 local에서 docker를 통해 서버를 실행시키기
1) 프로젝트개요
2) 기술 스택
3) 요구사항
4) 테스트 기술서()
5) 서비스 아키텍쳐
6) 소스코드 관리
7) 트러블 슈팅: 결제 및 환불, 성능 및 부하, 비용



Binary file removed YPAKRW_개인정보처리방침.docx
Binary file not shown.
Binary file removed YPARKW_이용약관.docx
Binary file not shown.
50 changes: 0 additions & 50 deletions cafe24

This file was deleted.

1 change: 0 additions & 1 deletion cafe24.pub

This file was deleted.

5 changes: 5 additions & 0 deletions server/config/settings/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
"debug_toolbar.middleware.DebugToolbarMiddleware"
]

GRAPH_MODELS = {
'all_applications': True,
'group_models': True,
}

MIDDLEWARE += DEV_MIDDLEWARE

STATIC_ROOT = '/app/static/'
Expand Down
3 changes: 0 additions & 3 deletions 공부하여 블로그 작성할 것 2024 10 25.txt

This file was deleted.

24 changes: 0 additions & 24 deletions 상품 업데이트, 게시물

This file was deleted.

33 changes: 0 additions & 33 deletions 테스트 해야할 것.txt

This file was deleted.

Loading