Skip to content

Instantly share code, notes, and snippets.

@QuanSai
Created September 14, 2016 12:28
Show Gist options
  • Save QuanSai/3e7a5ee56f998d1dcfb5c57e13d678ed to your computer and use it in GitHub Desktop.
Save QuanSai/3e7a5ee56f998d1dcfb5c57e13d678ed to your computer and use it in GitHub Desktop.
django-angular project generated
myproject
├── backend
│   ├── docs
│   ├── myproject
│   │   ├── manage.py
│   │   └── myproject
│   │   ├── dev.env
│   │   ├── __init__.py
│   │   ├── prod.env
│   │   ├── settings
│   │   │   ├── base.py
│   │   │   ├── dev.py
│   │   │   ├── prod.py
│   │   │   └── stage.py
│   │   ├── settings.py
│   │   ├── urls.py
│   │   └── wsgi.py
│   └── requirements
└── 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.js
└── webpack.config.js
19 directories, 21 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment