{"id":20740946,"url":"https://github.com/rollbar/rollbar-django-demo","last_synced_at":"2026-02-11T18:04:51.645Z","repository":{"id":44866472,"uuid":"59963914","full_name":"rollbar/rollbar-django-demo","owner":"rollbar","description":null,"archived":false,"fork":false,"pushed_at":"2022-01-21T19:17:56.000Z","size":3517,"stargazers_count":0,"open_issues_count":4,"forks_count":1,"subscribers_count":31,"default_branch":"master","last_synced_at":"2025-10-30T00:44:46.923Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"SCSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rollbar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-05-29T21:08:01.000Z","updated_at":"2021-06-15T21:28:24.000Z","dependencies_parsed_at":"2022-09-04T15:23:48.339Z","dependency_job_id":null,"html_url":"https://github.com/rollbar/rollbar-django-demo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rollbar/rollbar-django-demo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollbar%2Frollbar-django-demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollbar%2Frollbar-django-demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollbar%2Frollbar-django-demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollbar%2Frollbar-django-demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rollbar","download_url":"https://codeload.github.com/rollbar/rollbar-django-demo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rollbar%2Frollbar-django-demo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29340409,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T16:14:43.024Z","status":"ssl_error","status_checked_at":"2026-02-11T16:14:15.258Z","response_time":97,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-17T06:31:40.287Z","updated_at":"2026-02-11T18:04:51.630Z","avatar_url":"https://github.com/rollbar.png","language":"SCSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# django-sample-app\n\ndjango-sample-app is a **minimal** sample application to start developing your web project immediately on [Django framework](https://www.djangoproject.com/). \n\nThe sample application comes with:\n\n* [html5shiv](https://github.com/afarkas/html5shiv)\n* [jQuery](http://jquery.com/) v2.1.0 (No support for IE-8 or below)\n* [Twitter Bootstrap](http://getbootstrap.com/) v3.3.5\n* [Font Awesome](http://fontawesome.io/) v4.3.0\n\nthat are glued together with [initializr](http://www.initializr.com/). And its current `requirements.txt` file is:\n\n```\nDjango==1.8.2\ndjango-compressor==1.5\ndjango-debug-toolbar==1.3.2\ndjango-extensions==1.5.5\nipython==3.2.0\npsycopg2==2.6.1\nsix==1.9.0\nsqlparse==0.1.15\nwsgiref==0.1.2\n```\n\n## Installation\n\n### 1. virtualenv / virtualenvwrapper\nYou should already know what is [virtualenv](http://www.virtualenv.org/), preferably [virtualenvwrapper](http://www.doughellmann.com/projects/virtualenvwrapper/) at this stage. So, simply create it for your own project, where `projectname` is the name of your project:\n\n`$ mkvirtualenv --clear projectname`\n\n### 2. Download\nNow, you need the *django-sample-app* project files in your workspace:\n\n    $ cd /path/to/your/workspace\n    $ git clone git://github.com/kirpit/django-sample-app.git projectname \u0026\u0026 cd projectname\n\n### 3. Requirements\nRight there, you will find the *requirements.txt* file that has all the great debugging tools, django helpers and some other cool stuff. To install them, simply type:\n\n`$ pip install -r requirements.txt`\n\n### 4. Tweaks\n\n#### wsgi.py\n`projectname/wsgi.py` file is necessary for WSGI gateways (such as uWSGI) to run your Django application and also required from Django itself. You definitely want to change `{{ project_name }}` value in this file to whatever you name your application (e.g. `bookstore.settings`).\n\n#### SECRET_KEY\nGo to \u003chttp://www.miniwebtool.com/django-secret-key-generator/\u003e, create your secret key, copy it. Open your `projectname/settings/default.py`, find `SECRET_KEY` line, paste your secret key.\n\n#### Other settings stuff\nIt is good idea to make a **find \u0026 replace** within this default settings file as there are some \"{{ project_name }}\" string left such as `ROOT_URLCONF` or `LOCAL_APPS` variables.\n\n#### Main URL root\nYou also have to config your application URLs, specific to your own needs. For the beginning, the sample app has only one view that you need to modify its namespace from `projectname/urls.py`, where it *imports HomeView*.\n\n#### local.py (development specific) settings file\nCopy `projectname/settings/local.template.py` as `local.py` into the same directory and modify necessary changes. **local.py** is always ignored by **.gitignore**, so this is the machine specific settings mostly for development purposes.\n\n#### Initialize the database\nFirst set the database engine (PostgreSQL, MySQL, etc..) in your settings files; `projectname/settings/default.py` and/or `projectname/settings/local.py`. Of course, remember to install necessary database driver for your engine. Then define your credentials as well. Time to finish it up:\n\n`./manage.py migrate`\n\n### Ready? Go!\n\n`./manage.py runserver`\n\nor\n\n`./manage.py runserver_plus` (Requires Werkzeug)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frollbar%2Frollbar-django-demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frollbar%2Frollbar-django-demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frollbar%2Frollbar-django-demo/lists"}