Skip to content

Instantly share code, notes, and snippets.

@QuanSai
Created September 5, 2016 22:12
Show Gist options
  • Save QuanSai/8dc9844892209ff5ea0a573d7882f073 to your computer and use it in GitHub Desktop.
Save QuanSai/8dc9844892209ff5ea0a573d7882f073 to your computer and use it in GitHub Desktop.
Sample Django + Angular project I generated using one of my setup scripts.
mysite
├── backend
│   ├── docs
│   ├── mysite
│   │   ├── applications
│   │   │   ├── api
│   │   │   │   ├── __init__.py
│   │   │   │   └── v1
│   │   │   │   ├── __init__.py
│   │   │   │   ├── routes.py
│   │   │   │   ├── serializers.py
│   │   │   │   └── viewsets.py
│   │   │   └── __init__.py
│   │   ├── manage.py
│   │   └── mysite
│   │   ├── dev.env
│   │   ├── __init__.py
│   │   ├── prod.env
│   │   ├── settings
│   │   │   ├── base.py
│   │   │   ├── dev.py
│   │   │   ├── __init__.py
│   │   │   ├── prod.py
│   │   │   └── stage.py
│   │   ├── settings.py
│   │   ├── urls.py
│   │   └── wsgi.py
│   └── requirements
│   └── base.py
└── frontend
├── app
│   ├── 404.html
│   ├── app.js
│   ├── components
│   │   └── home
│   │   ├── home-controller.js
│   │   ├── home.html
│   │   └── home.js
│   ├── index.html
│   ├── routes.js
│   └── shared
├── assets
│   ├── css
│   ├── img
│   ├── js
│   └── libs
├── config
│   └── eslint.json
├── dist
│   └── js
├── package.json
└── webpack.config.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment