{"id":19685519,"url":"https://github.com/stuartmackay/django-app-template","last_synced_at":"2026-06-06T21:31:35.347Z","repository":{"id":139101862,"uuid":"609457548","full_name":"StuartMacKay/django-app-template","owner":"StuartMacKay","description":"The template I use to create reusable Django apps.","archived":false,"fork":false,"pushed_at":"2023-12-23T04:11:13.000Z","size":140,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-27T08:17:17.911Z","etag":null,"topics":["app","django","pypi-package","template"],"latest_commit_sha":null,"homepage":"","language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/StuartMacKay.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.rst","contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-03-04T08:22:48.000Z","updated_at":"2024-11-26T05:39:49.000Z","dependencies_parsed_at":"2025-02-27T08:10:01.699Z","dependency_job_id":"7ab8b2e4-7e66-49e9-b92b-973577564fb3","html_url":"https://github.com/StuartMacKay/django-app-template","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/StuartMacKay/django-app-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StuartMacKay%2Fdjango-app-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StuartMacKay%2Fdjango-app-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StuartMacKay%2Fdjango-app-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StuartMacKay%2Fdjango-app-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StuartMacKay","download_url":"https://codeload.github.com/StuartMacKay/django-app-template/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StuartMacKay%2Fdjango-app-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34001197,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-06T02:00:07.033Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["app","django","pypi-package","template"],"created_at":"2024-11-11T18:22:31.607Z","updated_at":"2026-06-06T21:31:35.318Z","avatar_url":"https://github.com/StuartMacKay.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"===================\nDjango App Template\n===================\nHalf the battle to create a successful project is getting everything\norganized. This is a Github template repository for a reusable Django\napp that can be released on PyPi.\n\nFeatures\n--------\n* Development with `black \u003chttps://github.com/psf/black\u003e`_ so everybody gets the code formatting rules they deserve\n* Development with `flake8 \u003chttps://flake8.pycqa.org/en/latest/\u003e`_ so people using ed get syntax checking\n* Development with `isort \u003chttps://pycqa.github.io/isort/\u003e`_ for automatically sorting imports\n* Development with `mypy \u003chttps://mypy-lang.org/\u003e`_ for type-hinting to catch errors\n* Testing with `pytest \u003chttps://docs.pytest.org/\u003e`_ and `FactoryBoy: \u003chttps://factoryboy.readthedocs.io/en/stable/\u003e`_\n* Manage versions with `bump-my-version \u003chttps://github.com/callowayproject/bump-my-version\u003e`_ - for semantic or calendar version numbers\n* Manage dependencies with `pip-tools \u003chttps://github.com/jazzband/pip-tools\u003e`_\n\nQuick start\n-----------\nThis is a GitHub template repository. Simply create a new repository from it\nor open it in a Code Space. The repository will contain a single commit.\n\nAfter you checkout your repository, the first step is to rename the app:\n\n..  code-block:: shell\n\n    ./bin/rename-app myapp\n\nNext, build the virtualenv and install all the dependencies. This will also\nbuild the library containing the app:\n\n..  code-block:: shell\n\n    python3 -m venv .venv\n    source .venv/bin/activate\n    pip install --upgrade pip setuptools wheel\n    pip install pip-tools\n\nOptional. The project is shipped with pinned versions for the dependencies.\nIf you want to upgrade to the latest versions then recompile the requirements\nsource files:\n\n..  code-block:: shell\n\n    pip-compile --upgrade requirements/dev.in\n    pip-compile --upgrade requirements/docs.in\n    pip-compile --upgrade requirements/tests.in\n\nInstall the dependencies:\n\n..  code-block:: shell\n\n    pip-sync requirements/dev.txt\n\nRun the tests:\n\n..  code-block:: shell\n\n    pytest\n\nRun the django server:\n\n..  code-block:: shell\n\n    ./manage.py runserver\n\nOpen a browser and visit http://localhost:8000 and, voila, we have a working\nsite. Well cover the deployment later.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstuartmackay%2Fdjango-app-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstuartmackay%2Fdjango-app-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstuartmackay%2Fdjango-app-template/lists"}