{"id":25243200,"url":"https://github.com/macabdul9/aws-django","last_synced_at":"2026-02-05T23:02:23.270Z","repository":{"id":106635375,"uuid":"187868228","full_name":"macabdul9/aws-django","owner":"macabdul9","description":"GitHub repository for AWS CodeStar Python (Django) web application mysite-1.","archived":false,"fork":false,"pushed_at":"2019-05-21T15:45:08.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-14T07:54:40.581Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/macabdul9.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,"zenodo":null}},"created_at":"2019-05-21T15:44:24.000Z","updated_at":"2020-03-13T23:17:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"5af2d7a4-3eeb-4329-8284-4cbc0fde5e91","html_url":"https://github.com/macabdul9/aws-django","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/macabdul9/aws-django","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/macabdul9%2Faws-django","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/macabdul9%2Faws-django/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/macabdul9%2Faws-django/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/macabdul9%2Faws-django/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/macabdul9","download_url":"https://codeload.github.com/macabdul9/aws-django/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/macabdul9%2Faws-django/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29137751,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T22:49:08.052Z","status":"ssl_error","status_checked_at":"2026-02-05T22:45:32.059Z","response_time":65,"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":[],"created_at":"2025-02-12T00:45:58.794Z","updated_at":"2026-02-05T23:02:23.246Z","avatar_url":"https://github.com/macabdul9.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"Welcome to the AWS CodeStar sample web application\n==================================================\n\nThis sample code helps get you started with a simple Django web application\ndeployed by AWS Elastic Beanstalk and AWS CloudFormation.\n\nWhat's Here\n-----------\n\nThis sample includes:\n\n* README.md - this file\n* ebdjango/ - this directory contains your Django project files. Note that this\n  directory contains a Django config file (settings.py) that includes a pre-defined\n  SECRET_KEY. Before running in a production environment, you should replace this\n  application key with one you generate\n  (see https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/#secret-key for details)\n* helloworld/ - this directory contains your Django application files\n* manage.py - this Python script is used to start your Django web application\n* .ebextensions/ - this directory contains the Django configuration file that\n  allows AWS Elastic Beanstalk to deploy your Django application\n* buildspec.yml - this file is used by AWS CodeBuild to build and test\n  your application\n* requirements.txt - this file is used to install Python dependencies needed by\n  the Django application\n* template.yml - this file contains the description of AWS resources used by AWS\n  CloudFormation to deploy your infrastructure\n* template-configuration.json - this file contains the project ARN with placeholders used for tagging resources with the project ID\n\nGetting Started\n---------------\n\nThese directions assume you want to develop on your local computer, and not\nfrom the Amazon EC2 instance itself. If you're on the Amazon EC2 instance, the\nvirtual environment is already set up for you, and you can start working on the\ncode.\n\nTo work on the sample code, you'll need to clone your project's repository to your\nlocal computer. If you haven't, do that first. You can find instructions in the\nAWS CodeStar user guide.\n\n1. Create a Python virtual environment for your Django project. This virtual\n   environment allows you to isolate this project and install any packages you\n   need without affecting the system Python installation. At the terminal, type\n   the following command:\n\n        $ virtualenv .venv\n\n2. Activate the virtual environment:\n\n        $ activate ./venv/bin/activate\n\n3. Install Python dependencies for this project:\n\n        $ pip install -r requirements.txt\n\n4. (Optional) Enable Django's debug mode for development:\n\n        $ export DJANGO_DEBUG=True\n\n5. Start the Django development server:\n\n        $ python manage.py runserver\n\n6. Open http://127.0.0.1:8000/ in a web browser to view your application.\n\nWhat Do I Do Next?\n------------------\n\nOnce you have a virtual environment running, you can start making changes to\nthe sample Django web application. We suggest making a small change to\n/helloworld/templates/index.html first, so you can see how changes pushed to\nyour project's repository are automatically picked up and deployed to the Amazon EC2\ninstance by AWS Elastic Beanstalk. (You can watch the progress on your project dashboard.)\nOnce you've seen how that works, start developing your own code, and have fun!\n\nTo run your tests locally, go to the root directory of the sample code and run\nthe `python manage.py test` command, which AWS CodeBuild also runs through\nyour `buildspec.yml` file.\n\nTo test your new code during the release process, modify the existing tests or\nadd tests to the tests directory. AWS CodeBuild will run the tests during the\nbuild stage of your project pipeline. You can find the test results\nin the AWS CodeBuild console.\n\nLearn more about AWS CodeBuild and how it builds and tests your application here:\nhttps://docs.aws.amazon.com/codebuild/latest/userguide/concepts.html\n\nLearn more about AWS CodeStar by reading the user guide.  Ask questions or make\nsuggestions on our forum.\n\nUser Guide: http://docs.aws.amazon.com/codestar/latest/userguide/welcome.html\nForum: https://forums.aws.amazon.com/forum.jspa?forumID=248\n\nHow Do I Add Template Resources to My Project?\n------------------\n\nTo add AWS resources to your project, you'll need to edit the `template.yml`\nfile in your project's repository. You may also need to modify permissions for\nyour project's worker roles. After you push the template change, AWS CodeStar\nand AWS CloudFormation provision the resources for you.\n\nSee the AWS CodeStar user guide for instructions to modify your template:\nhttps://docs.aws.amazon.com/codestar/latest/userguide/how-to-change-project#customize-project-template.html\n\nWhat Should I Do Before Running My Project in Production?\n------------------\n\nAWS recommends you review the security best practices recommended by the framework\nauthor of your selected sample application before running it in production. You\nshould also regularly review and apply any available patches or associated security\nadvisories for dependencies used within your application.\n\nBest Practices: https://docs.aws.amazon.com/codestar/latest/userguide/best-practices.html?icmpid=docs_acs_rm_sec\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmacabdul9%2Faws-django","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmacabdul9%2Faws-django","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmacabdul9%2Faws-django/lists"}