Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
0dc0014
CRUD, 리뷰, 시설
JMHman Apr 22, 2024
b12758a
CRUD, 리뷰, 시설, 유저
JMHman Apr 22, 2024
1bfa106
place pagination적용 우선 10개
JMHman Apr 24, 2024
167dab0
place pagination 20개로 함
JMHman Apr 24, 2024
ed9d8d5
place 검색 수정함
JMHman Apr 24, 2024
43270df
place 검색 수정함
JMHman Apr 24, 2024
316d1e9
cors
JMHman Apr 24, 2024
83b4b4c
cors
JMHman Apr 24, 2024
8d5cb2b
cors
JMHman Apr 24, 2024
db09a3f
오류발생
JMHman Apr 25, 2024
924245e
jwt 수정
friedrice93 Apr 25, 2024
0faa106
52머용 그는 신이야
JMHman Apr 25, 2024
e721522
52머용 그는 신이야
JMHman Apr 25, 2024
a702e4d
52머용 그는 신이야
JMHman Apr 25, 2024
e26aba1
승환도 신이야
JMHman Apr 25, 2024
02a458e
커피 마시러 가야지
JMHman Apr 26, 2024
2017c8c
gitignore
JMHman Apr 27, 2024
7f50ed3
게령 요구사항 조금 완료
JMHman Apr 27, 2024
c5aadf2
nginx 오류
JMHman Apr 28, 2024
4b0f90e
견종검색 완료
JMHman Apr 28, 2024
39b5dfd
견종검색 완료
JMHman Apr 28, 2024
21fe451
섬네일 이미지 링크 완료
JMHman Apr 29, 2024
9b94d58
섬네일 이미지 링크 완료
JMHman Apr 29, 2024
78cc5b6
섬네일 이미지 링크 완료
JMHman Apr 29, 2024
7ef970d
섬네일 이미지 링크 완료
JMHman Apr 29, 2024
17edc9f
혜민 요구 사항
JMHman Apr 29, 2024
496aa9f
혜민 요구 사항
JMHman Apr 29, 2024
92c2827
혜민 요구 사항
JMHman Apr 29, 2024
4388ba6
혜민 요구 사항
JMHman Apr 29, 2024
70a6dcf
혜민 요구 사항
JMHman Apr 29, 2024
dfd902e
혜민 요구 사항
JMHman Apr 29, 2024
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
8 changes: 0 additions & 8 deletions .idea/oz_01_collabo-006.iml

This file was deleted.

114 changes: 114 additions & 0 deletions backend/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
static

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# Environments
# .env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# Dependency directories
node_modules/

# VS Code
.vscode
3 changes: 0 additions & 3 deletions backend/.env

This file was deleted.

117 changes: 116 additions & 1 deletion backend/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,117 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

### backend ###
# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
static

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# Dependency directories
node_modules/

# VS Code
.vscode

# Dev folder
dev
8 changes: 0 additions & 8 deletions backend/.idea/.gitignore

This file was deleted.

37 changes: 0 additions & 37 deletions backend/.idea/backend.iml

This file was deleted.

5 changes: 0 additions & 5 deletions backend/.idea/codeStyles/codeStyleConfig.xml

This file was deleted.

6 changes: 0 additions & 6 deletions backend/.idea/inspectionProfiles/profiles_settings.xml

This file was deleted.

7 changes: 0 additions & 7 deletions backend/.idea/misc.xml

This file was deleted.

8 changes: 0 additions & 8 deletions backend/.idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions backend/.idea/vcs.xml

This file was deleted.

4 changes: 3 additions & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,11 @@ RUN poetry add psycopg2-binary
# 소스 코드를 복사합니다.
COPY . /app/

# run.sh 파일에 실행 권한 부여


# 컨테이너에서 실행할 명령을 설정합니다.
CMD ["poetry", "run", "python", "manage.py", "runserver", "0.0.0.0:8000"]
CMD ["./run.sh"]



Loading