{"id":13448770,"url":"https://github.com/arocks/edge","last_synced_at":"2025-04-12T16:37:54.604Z","repository":{"id":20228953,"uuid":"23500825","full_name":"arocks/edge","owner":"arocks","description":"A Django project skeleton that is modern and cutting edge.","archived":false,"fork":false,"pushed_at":"2022-11-22T07:43:48.000Z","size":612,"stargazers_count":839,"open_issues_count":37,"forks_count":243,"subscribers_count":51,"default_branch":"master","last_synced_at":"2025-04-03T17:11:22.182Z","etag":null,"topics":["bootstrap","django","python"],"latest_commit_sha":null,"homepage":"http://django-edge.readthedocs.org/","language":"HTML","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/arocks.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-08-30T21:12:05.000Z","updated_at":"2025-02-10T05:44:41.000Z","dependencies_parsed_at":"2023-01-12T03:30:40.725Z","dependency_job_id":null,"html_url":"https://github.com/arocks/edge","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arocks%2Fedge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arocks%2Fedge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arocks%2Fedge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arocks%2Fedge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arocks","download_url":"https://codeload.github.com/arocks/edge/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248597699,"owners_count":21130927,"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":["bootstrap","django","python"],"created_at":"2024-07-31T06:00:20.670Z","updated_at":"2025-04-12T16:37:54.572Z","avatar_url":"https://github.com/arocks.png","language":"HTML","readme":"{% comment \"This comment section will be deleted in the generated project\" %}\n\n# [Edge][docs]\n\n[![Build Status](https://travis-ci.org/arocks/edge.svg?branch=master)](https://travis-ci.org/arocks/edge)\n\n**A Fantastic Django project starter.**\n\n## Features\n\n* Ready Bootstrap-themed pages\n* User Registration/Sign up\n* Better Security with [12-Factor](http://12factor.net/) recommendations\n* Logging/Debugging Helpers\n* Works on Python 3 and Django 2\n* Formatted with [Black](https://github.com/ambv/black)\n\nMore information at: [http://django-edge.readthedocs.org/][docs]\nContribute using: [Edge Dev Tools](https://github.com/arocks/edge-devtools)  ✨ 🍰 ✨\n\n[docs]: http://django-edge.readthedocs.org/\n\n## Quick start:\n\nBefore creating a new project from this template, you need to create a fresh virtual environment and install Django:\n\n1. `$ python -m venv ./myenv`\n2. `$ source ./myenv/bin/activate.fish` (use the appropriate activate script based on your shell)\n3. `$ python -m pip install -U pip django`\n\nCreate your new _edgy_ django project:\n\n1. `$ django-admin.py startproject --template=https://github.com/arocks/edge/archive/master.zip --extension=py,md,html,env my_proj`\n2. `$ cd my_proj`\n3. `$ pip install -r requirements.txt `\n4. `$ cd src`\n5. `$ cp my_proj/settings/local.sample.env my_proj/settings/local.env`\n6. `$ python manage.py migrate`\n7. `$ python manage.py createsuperuser`\n8. `$ python manage.py runserver`\n\n\n## Recommended Installation (with `pipenv`)\n1. `$ pip install --user --upgrade pipenv` ([Install pipenv system-wide or locally](https://docs.pipenv.org/) but outside a virtualenv)\n2. `$ mkdir my_proj` (choose a better name than `my_proj` for your project)\n3. `$ django-admin.py startproject --template=https://github.com/arocks/edge/archive/master.zip --extension=py,md,html,env my_proj .`\n\n    If you get an SSL error, then download the zip file and mention it after `--template=`, like this: `django-admin.py startproject --template=~/Downloads/master.zip --extension=py,md,html,env my_proj .`\n4. `$ pipenv install --dev`\n5. `$ pipenv shell`\n6. `$ cp src/my_proj/settings/local.sample.env src/my_proj/settings/local.env` (or rename this file)\n7. `$ cd src`\n8. `$ python manage.py migrate`\n9. `$ python manage.py createsuperuser`\n10. `$ python manage.py runserver`\n\nIf you need to keep `requirements.txt` updated then run\n\n    pipenv lock --requirements \u003e requirements/base.txt\n    echo \"-r base.txt\" \u003e requirements/development.txt\n    pipenv lock --requirements --dev \u003e\u003e requirements/development.txt\n\nRest of this README will be copied to the generated project.\n\n--------------------------------------------------------------------------------------------\n\n{% endcomment %}\n\n# {{ project_name }}\n\n{{ project_name }} is a _short description_. It is built with [Python][0] using the [Django Web Framework][1].\n\nThis project has the following basic apps:\n\n* App1 (short desc)\n* App2 (short desc)\n* App3 (short desc)\n\n## Installation\n\n### Quick start\n\nTo set up a development environment quickly, first install Python 3. It\ncomes with virtualenv built-in. So create a virtual env by:\n\n    1. `$ python3 -m venv {{ project_name }}`\n    2. `$ . {{ project_name }}/bin/activate`\n\nInstall all dependencies:\n\n    pip install -r requirements.txt\n\nRun migrations:\n\n    python manage.py migrate\n\n### Detailed instructions\n\nTake a look at the docs for more information.\n\n[0]: https://www.python.org/\n[1]: https://www.djangoproject.com/\n","funding_links":[],"categories":["Boilerplate","样板","HTML"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farocks%2Fedge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farocks%2Fedge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farocks%2Fedge/lists"}