django-concurrency
Optimistic lock implementation for Django. Prevents users from doing concurrent editing.
파일 탐색기
최종 버전 다운로드 (.zip)- issues.yml
- lint.yaml
- release.yml
- tests.yaml
- file-filters.yml
- config
- version.py
- admin.rst
- api.rst
- changes.rst
- conf.py
- cookbook.rst
- faq.rst
- fields.rst
- globals.txt
- index.rst
- install.rst
- middleware.rst
- requirements.pip
- settings.rst
- django.po
- __init__.py
- triggers.py
- __init__.py
- delete_selected_confirmation.html
- __init__.py
- concurrency.py
- __init__.py
- admin.py
- api.py
- apps.py
- compat.py
- config.py
- core.py
- exceptions.py
- fields.py
- forms.py
- middleware.py
- models.py
- test_utils.py
- triggers.py
- utils.py
- views.py
- 0001_initial.py
- 0002_concurrency_add_version_to_group.py
- __init__.py
- 0001_initial.py
- 0002_concurrency_add_version_to_group.py
- __init__.py
- 0001_initial.py
- 0002_auto_20160909_1544.py
- 0003_auto_20171207_1254.py
- __init__.py
- 0001_initial.py
- __init__.py
- 404.html
- 409.html
- __init__.py
- admin.py
- apps.py
- backends.py
- base.py
- models.py
- settings.py
- urls.py
- util.py
- .coveragerc
- conftest.py
- dumpdata.json
- test_admin_actions.py
- test_admin_check.py
- test_admin_edit.py
- test_admin_list_editable.py
- test_api.py
- test_base.py
- test_checks.py
- test_command.py
- test_concurrencymetainfo.py
- test_conditional.py
- test_config.py
- test_core.py
- test_coverage_gap.py
- test_django_compay.py
- test_enable_disable.py
- test_forms.py
- test_issues.py
- test_loaddata_dumpdata.py
- test_manager.py
- test_middleware.py
- test_reversion.py
- test_templatetags.py
- test_threads.py
- test_triggers.py
- test_triggerversionfield.py
- test_utils.py
- test_views.py
- .editorconfig
- .flake8
- .gitignore
- .pre-commit-config.yaml
- .readthedocs.yaml
- AUTHORS
- CHANGES
- compose.yml
- LICENSE
- Makefile
- manage.py
- MANIFEST.in
- mypy.ini
- pyproject.toml
- README.md
- ruff.toml
- tox.ini
- uv.lock
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/saxix/django-concurrency
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd django-concurrency
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. Docker
쉬움 추천사전 준비물
- Git GitHub에서 프로젝트 코드를 내려받으려면 필요합니다.
- Docker Desktop 컨테이너를 빌드하고 실행하려면 필요합니다. 설치 후 실행해서 백그라운드에 켜두세요.
docker compose up -d --build
정의된 모든 컨테이너(서버, DB 등)를 한 번에 빌드하고 백그라운드에서 실행합니다.
터미널에 docker compose ps 를 입력해 컨테이너들이 Up 상태인지 확인하세요. README에 포트 번호가 적혀있다면 브라우저에서 http://localhost:포트번호 로 접속해보세요.
3. Python
쉬움사전 준비물
pip install .
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
python manage.py runserver
장고(Django) 개발 서버를 실행합니다.
에러 메시지 없이 실행되고 터미널에 안내 문구가 출력되면 정상입니다.
4. Make
보통사전 준비물
- Git GitHub에서 프로젝트 코드를 내려받으려면 필요합니다.
- Make Linux/macOS는 보통 기본 설치되어 있습니다. Windows는 별도 설치(예: MSYS2, WSL)가 필요합니다.
make
생성된 빌드 설정을 바탕으로 실제 컴파일을 진행해 실행 파일을 만듭니다.
에러 없이 끝나면 성공입니다. 생성된 실행 파일을 직접 실행해보세요.
// repository documentation
Was this content helpful?
(0 ratings)
