{"id":15103443,"url":"https://github.com/danieldev0724/django-angular2-fullstack-devops","last_synced_at":"2026-02-07T06:33:57.044Z","repository":{"id":188892011,"uuid":"663122887","full_name":"danieldev0724/django-angular2-fullstack-devops","owner":"danieldev0724","description":"All-in-one django/angular2 seed with cli interface for multi-environment devops on aws using ansible/packer/terraform ","archived":false,"fork":false,"pushed_at":"2023-07-06T15:46:50.000Z","size":299,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-03T19:41:22.663Z","etag":null,"topics":["angular2","ansible","aws","devops","docker","jenkins","terraform"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/danieldev0724.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-07-06T15:46:24.000Z","updated_at":"2023-07-08T16:46:21.000Z","dependencies_parsed_at":"2023-08-17T11:09:26.087Z","dependency_job_id":null,"html_url":"https://github.com/danieldev0724/django-angular2-fullstack-devops","commit_stats":null,"previous_names":["danieldev0724/django-angular2-fullstack-devops"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/danieldev0724/django-angular2-fullstack-devops","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danieldev0724%2Fdjango-angular2-fullstack-devops","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danieldev0724%2Fdjango-angular2-fullstack-devops/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danieldev0724%2Fdjango-angular2-fullstack-devops/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danieldev0724%2Fdjango-angular2-fullstack-devops/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/danieldev0724","download_url":"https://codeload.github.com/danieldev0724/django-angular2-fullstack-devops/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danieldev0724%2Fdjango-angular2-fullstack-devops/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29188226,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T05:07:31.176Z","status":"ssl_error","status_checked_at":"2026-02-07T05:06:15.227Z","response_time":63,"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":["angular2","ansible","aws","devops","docker","jenkins","terraform"],"created_at":"2024-09-25T19:24:09.313Z","updated_at":"2026-02-07T06:33:57.031Z","avatar_url":"https://github.com/danieldev0724.png","language":"TypeScript","readme":"# django-angular2-fullstack-devops\nAll-in-one django/angular2 seed with cli interface for multi-environment devops on aws using ansible/packer/terraform.\n\nSave weeks or even months of work!\n\n## Features\n* Vagrant box\n* Ansible playbook\n* Devops cli interface\n* Travis CI configurations\n* Tests with code coverage\n* Isolated frontend/backend projects\n* Build virtual images with packer\n* Launch infrastructure using terraform\n* Central project variables configuration\n* Jenkins pipeline workflow server (TODO)\n\n## Stack\n\n### Frontend\n* Angular 2.0\n* TypeScript 1.8\n* Bootstrap 3.3\n\n### Backend\n* Django 1.9\n* PostgreSQL 9.4\n* Django REST Framework 3.3\n\n## Requirements\n* Git ([Install](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git), [Configure SSH agent](https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/))\n* [Vagrant 1.8](https://www.vagrantup.com/docs/installation)\n* [VirtualBox](https://www.virtualbox.org/wiki/Downloads)\n* [Node.js 4](https://nodejs.org/en/download/)\n\nThe following are needed for building and deploying your infrastructure:\n\n* [Packer 0.9](https://www.packer.io/intro/getting-started/setup.html)\n* [Terraform 0.7](https://www.terraform.io/intro/getting-started/install.html)\n* AWS account setup ([Sign up](https://aws.amazon.com), [Configure access \u0026 local defaults](docs/aws.md))\n\n## Setup\n```bash\n$ git clone https://github.com/stphivos/django-angular2-fullstack-devops\n$ cd django-angular2-fullstack-devops\n\n$ vim vars          # Edit project variables based on your project\n$ ./devops setup    # Equivalent to `vagrant up` the first time, except that it destroys and re-creates the machine\n$ vagrant ssh       # Log into the virtual machine. See all vagrant commands: https://www.vagrantup.com/docs/cli/\n```\n\n## Run\n\n### Frontend\n```bash\n$ cd frontend\n$ npm start\n```\n[README..](frontend/README.md)\n\n### Backend\n```bash\n$ cd backend\n$ ./manage.py runserver\n```\n[README..](backend/README.md)\n\n## Devops\n\n### Build\n\nThe first time:\n```bash\n$ ./devops build dev            # Calls commands below in the order shown\n```\n\nFor building a specific project, either of the following can be run separately:\n```bash\n$ ./devops build dev backend    # Uses packer/ansible to provision an amazon machine image (ami)\n$ ./devops build dev frontend   # Uses gulp to create a target environment distribution\n```\n\n### Deploy\n\nThe first time:\n```bash\n$ ./devops deploy dev           # Calls commands below in the order shown\n```\n\nAfter updating a specific component, either of the following can be run separately:\n```bash\n$ ./devops deploy dev core      # Uses terraform to launch shared infrastructure such as vpc/gateway/subnets etc.\n$ ./devops deploy dev rds       # Uses terraform to launch a db instance on RDS\n$ ./devops deploy dev backend   # Uses terraform to launch an EC2 instance and load balancer for the backend api\n$ ./devops deploy dev frontend  # Uses aws-cli to upload the frontend static files to a bucket on S3\n```\n\n### Examples\n\nRebuild and deploy frontend for prod environment:\n```bash\n$ ./devops pipeline prod frontend  # ~30 seconds\n```\n\nRebuild and deploy backend for prod environment:\n```bash\n$ ./devops pipeline prod backend  # ~7 minutes\n```\n\n## Credits\n* Frontend seed - slightly modified version of [mgechev/angular2-seed](https://github.com/mgechev/angular2-seed)\n* Ansible playbook for Django - based on [jcalazan/ansible-django-stack](https://github.com/jcalazan/ansible-django-stack)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanieldev0724%2Fdjango-angular2-fullstack-devops","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdanieldev0724%2Fdjango-angular2-fullstack-devops","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanieldev0724%2Fdjango-angular2-fullstack-devops/lists"}