{"id":25578467,"url":"https://github.com/abdullokhonz/itproger","last_synced_at":"2026-04-07T09:32:19.456Z","repository":{"id":278575058,"uuid":"931460499","full_name":"abdullokhonz/itproger","owner":"abdullokhonz","description":"A simple Django project to manage news, with built-in user authentication and a basic admin panel. Follow the setup guide in the README to get started with the development environment and run the project locally.","archived":false,"fork":false,"pushed_at":"2025-02-20T14:17:56.000Z","size":23,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-01T23:34:30.815Z","etag":null,"topics":["css","django","github","html","itproger","news","python","sqlite3","youtube"],"latest_commit_sha":null,"homepage":"https://github.com/abdullokhonz","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/abdullokhonz.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":"2025-02-12T10:11:28.000Z","updated_at":"2025-03-12T12:17:55.000Z","dependencies_parsed_at":"2025-02-20T14:38:01.789Z","dependency_job_id":"fd5dc85c-84fb-4ca6-b753-8cb11e9f2cd3","html_url":"https://github.com/abdullokhonz/itproger","commit_stats":null,"previous_names":["abdullokhonz/itproger"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/abdullokhonz/itproger","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullokhonz%2Fitproger","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullokhonz%2Fitproger/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullokhonz%2Fitproger/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullokhonz%2Fitproger/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abdullokhonz","download_url":"https://codeload.github.com/abdullokhonz/itproger/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullokhonz%2Fitproger/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31508045,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T03:10:19.677Z","status":"ssl_error","status_checked_at":"2026-04-07T03:10:13.982Z","response_time":105,"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":["css","django","github","html","itproger","news","python","sqlite3","youtube"],"created_at":"2025-02-21T03:15:32.016Z","updated_at":"2026-04-07T09:32:19.435Z","avatar_url":"https://github.com/abdullokhonz.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n---\n\n# **Django Project Setup Guide** 🚀  \n\nThis guide explains how to set up and run the Django project. Follow the steps below to install dependencies, configure the environment, and start the project.  \n\n## **1. Clone the Repository**  \n\n```bash\ngit clone https://github.com/abdullokhonz/itproger.git\ncd itproger\n```\n\n## **2. Create a Virtual Environment**  \n\nBefore installing dependencies, create and activate a virtual environment:  \n\n- **Windows:**  \n  ```bash\n  python -m venv venv\n  venv\\Scripts\\activate\n  ```\n\n- **Mac/Linux:**  \n  ```bash\n  python -m venv venv\n  source venv/bin/activate\n  ```\n\n## **3. Install Dependencies**  \n\nOnce the virtual environment is activated, install the required packages:  \n\n```bash\npip install -r requirements.txt\n```\n\n## **4. Configure Environment Variables**  \n\nCreate a `.env` file in the project's root directory and add the following variables:  \n\n```ini\nSECRET_KEY=your-secret-key\nDEBUG=True\nALLOWED_HOSTS=localhost,127.0.0.1\nDATABASE_URL=sqlite:///db.sqlite3\n```\n\n## **5. Apply Migrations**  \n\nBefore running the project, apply database migrations:  \n\n```bash\npython manage.py migrate\n```\n\n## **6. Create a Superuser (Optional, for Admin Panel)**  \n\nIf you need access to the Django admin panel, create a superuser:  \n\n```bash\npython manage.py createsuperuser\n```\n\nFollow the prompts to set up a username, email, and password.  \n\n## **7. Run the Development Server**  \n\nStart the Django development server with:  \n\n```bash\npython manage.py runserver\n```\n\nThe project will be available at:  \n➡️ **http://127.0.0.1:8000/**  \n\n## **8. Additional Commands**  \n\n- **Collect static files (for production):**  \n  ```bash\n  python manage.py collectstatic\n  ```\n\n- **Run tests:**  \n  ```bash\n  python manage.py test\n  ```\n\n## **9. Deactivating the Virtual Environment**  \n\nWhen you're done, deactivate the virtual environment:  \n\n```bash\ndeactivate\n```\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabdullokhonz%2Fitproger","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabdullokhonz%2Fitproger","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabdullokhonz%2Fitproger/lists"}