{"id":16686356,"url":"https://github.com/stdevteam/rest_example","last_synced_at":"2026-04-21T20:01:34.451Z","repository":{"id":151144956,"uuid":"92378987","full_name":"stdevteam/rest_example","owner":"stdevteam","description":"REST API example implemented with Django and Django-Rest-Framework.","archived":false,"fork":false,"pushed_at":"2022-04-05T12:39:13.000Z","size":16,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-12-30T00:56:15.947Z","etag":null,"topics":["django","django-application","django-rest-framework","python3","restful-api","swagger","unit-testing"],"latest_commit_sha":null,"homepage":null,"language":"Python","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/stdevteam.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-05-25T07:49:54.000Z","updated_at":"2022-04-05T12:39:16.000Z","dependencies_parsed_at":"2024-02-13T03:17:37.785Z","dependency_job_id":null,"html_url":"https://github.com/stdevteam/rest_example","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/stdevteam/rest_example","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stdevteam%2Frest_example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stdevteam%2Frest_example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stdevteam%2Frest_example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stdevteam%2Frest_example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stdevteam","download_url":"https://codeload.github.com/stdevteam/rest_example/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stdevteam%2Frest_example/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32108187,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-21T11:25:29.218Z","status":"ssl_error","status_checked_at":"2026-04-21T11:25:28.499Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["django","django-application","django-rest-framework","python3","restful-api","swagger","unit-testing"],"created_at":"2024-10-12T15:05:32.648Z","updated_at":"2026-04-21T20:01:34.414Z","avatar_url":"https://github.com/stdevteam.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"REST - example application based on Django and django-rest-framework\n====================================================================\n\n\n\n-----------------\nDevelopment setup\n-----------------\n\nRequirements:\n\n- \u003ca href=\"https://www.python.org/\"\u003epython3.4+\u003c/a\u003e\n- \u003ca href=\"https://www.djangoproject.com/\"\u003eDjango1.11\u003c/a\u003e\n- \u003ca href=\"https://www.mysql.com/\"\u003emysql-server\u003c/a\u003e\n- \u003ca href=\"http://www.django-rest-framework.org/\"\u003edjangorestframework\u003c/a\u003e\n- \u003ca href=\"https://github.com/marcgibbons/django-rest-swagger\"\u003edjango-rest-swagger\u003c/a\u003e\n\nInstall required system packages:\n\n.. code-block:: bash\n\n    $ sudo apt-get install python3-pip\n    $ sudo apt-get install libmysqlclient-dev\n    $ sudo apt-get install python3-dev\n    \nCreate www directory where project sits and environment dir\n\n.. code-block:: bash\n\n    $ mkdir /var/www \u0026\u0026 mkdir /var/envs \u0026\u0026 mkdir /var/envs/bin\n    \nInstall virtualenvwrapper\n\n.. code-block:: bash\n\n    $ pip3 install virtualenvwrapper\n\nYou could add commands listed below to your ~/.bashrc in order to use virutualenvwrapper easier\n\n.. code-block:: bash\n\n    export WORKON_HOME=/var/envs\n    export PROJECT_HOME=/var/www\n    export VIRTUALENVWRAPPER_HOOK_DIR=/var/envs/bin\n    source /usr/local/bin/virtualenvwrapper.sh\n    export IS_LOCAL=1\n    \nCreate virtualenv\n\n.. code-block:: bash\n\n    $ cd /var/envs \u0026\u0026 virtualenv --python=python3.4 rest_example\n    \nInstall requirements for a project.\n\n.. code-block:: bash\n\n    $ cd /var/www/rest_example \u0026\u0026 pip3 install -r requirements/local.txt\n\nRun migrations.\n\n.. code-block:: bash\n\n    $ python manage.py migrate\n\nRun application in test mode.\n\n.. code-block:: bash\n\n    $ python manage.py runserver\n\nSwagger-generated documentation URL.\n* http://127.0.0.1:8000/docs/\n\nDjango-rest-framework interface URL.\n* http://127.0.0.1:8000\n\nRunning tests.\n\n.. code-block:: bash\n\n    $ python manage.py test apps\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstdevteam%2Frest_example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstdevteam%2Frest_example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstdevteam%2Frest_example/lists"}