{"id":19164570,"url":"https://github.com/heliumedu/template-project","last_synced_at":"2025-07-16T05:40:12.217Z","repository":{"id":33784172,"uuid":"154749787","full_name":"HeliumEdu/template-project","owner":"HeliumEdu","description":"A template Django project that can be initialized using `helium-cli`","archived":false,"fork":false,"pushed_at":"2025-07-14T14:33:16.000Z","size":295,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-14T16:21:42.816Z","etag":null,"topics":["aws","aws-codedeploy","django","heliumcli","python","template-project"],"latest_commit_sha":null,"homepage":"https://github.com/HeliumEdu/heliumcli/wiki#template-project","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/HeliumEdu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.rst","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"alexdlaird","patreon":"alexdlaird","custom":["https://www.paypal.me/alexdlaird"]}},"created_at":"2018-10-25T23:25:41.000Z","updated_at":"2025-07-14T12:30:22.000Z","dependencies_parsed_at":"2023-10-04T19:30:22.497Z","dependency_job_id":"47b410b8-87e9-4b1a-9534-c19f5c41408b","html_url":"https://github.com/HeliumEdu/template-project","commit_stats":null,"previous_names":[],"tags_count":47,"template":true,"template_full_name":null,"purl":"pkg:github/HeliumEdu/template-project","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HeliumEdu%2Ftemplate-project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HeliumEdu%2Ftemplate-project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HeliumEdu%2Ftemplate-project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HeliumEdu%2Ftemplate-project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HeliumEdu","download_url":"https://codeload.github.com/HeliumEdu/template-project/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HeliumEdu%2Ftemplate-project/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265485253,"owners_count":23774454,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["aws","aws-codedeploy","django","heliumcli","python","template-project"],"created_at":"2024-11-09T09:22:48.215Z","updated_at":"2025-07-16T05:40:12.197Z","avatar_url":"https://github.com/HeliumEdu.png","language":"Python","funding_links":["https://github.com/sponsors/alexdlaird","https://patreon.com/alexdlaird","https://www.paypal.me/alexdlaird"],"categories":[],"sub_categories":[],"readme":"![Python Versions](https://img.shields.io/badge/python-%203.8%20|%203.9%20|%203.10%20|%203.11%20-blue)\n[![Coverage](https://img.shields.io/codecov/c/github/HeliumEdu/template-project)](https://codecov.io/gh/HeliumEdu/template-project)\n[![Build](https://img.shields.io/github/actions/workflow/status/HeliumEdu/template-project/build.yml)](https://github.com/HeliumEdu/template-project/actions/workflows/build.yml)\n![GitHub License](https://img.shields.io/github/license/HeliumEdu/template-project)\n\n# template-project\n\n## Getting Started\n\nThe project is developed using Python and [Django](https://www.djangoproject.com).\n\nThis repository contains the source code for the HeliumEdu `template-project`, which can be initialized using\n[`helium-cli`](https://github.com/HeliumEdu/heliumcli) with:\n\n```\nhelium-cli init \u003cproject_id\u003e \u003cProject Name\u003e \u003chostname\u003e \u003cgithuber_username\u003e\n```\n\n### Project Setup\n\nTo setup the Python/Django build environment, execute:\n\n```sh\nmake install\n```\n\nThis project is configured to work with a Virtualenv which has now been setup in the `venv` folder. If you're\nunfamiliar with how this works, [read up on Virtualenv here](https://virtualenv.pypa.io/en/stable). The short version\nis, virtualenv creates isolated environments for each project's dependencies. To activate and use this environment when\ndeveloping, execute:\n\n```sh\nsource venv/bin/activate\n```\n\nAll commands below will now be run within the virtualenv (though `make` commands will always automatically enter the\nvirtualenv before executing).\n\nTo ensure the database is in sync with the latest schema, database migrations are generated and run with Django. To run\nmigrations, execute:\n\n```sh\nmake migrate\n```\n\nOnce migrations have been run, you can create a super user, which is a standard user that also has access to the /admin\nsite.\n\n```sh\npython manage.py createsuperuser\n```\n\nBefore commits are made, be sure to run tests and check the generated coverage report.\n\n```sh\nmake test\n```\n\nNow you're all set! To start the development server, execute:\n\n```sh\nbin/runserver\n```\n\nA development server will be started at \u003chttp://localhost:8000\u003e, though there is no mounted root URL—visit\n\u003chttp://localhost:8000/admin\u003e or \u003chttp://localhost:8000/info\u003e to see the project serve a request.\n\nIf the `USE_NGROK` environment variable is set when a dev server is started (using `runserver`),\n[pyngrok](https://github.com/alexdlaird/pyngrok) will be used to open a `ngrok` tunnel. This is especially useful when\nusing webhooks.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheliumedu%2Ftemplate-project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fheliumedu%2Ftemplate-project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheliumedu%2Ftemplate-project/lists"}