├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── app ├── index.js └── templates │ ├── Gruntfile.js │ ├── README.md.erb │ ├── _bower.json │ ├── _generator.json │ ├── _package.json │ ├── app │ ├── ___init__.py │ ├── models │ │ └── ___init__.py │ ├── routes │ │ ├── ___init__.py │ │ └── _index.py │ └── static │ │ ├── _index.html │ │ ├── css │ │ └── app.css │ │ ├── js │ │ ├── _app.js │ │ └── home │ │ │ └── _home-controller.js │ │ └── views │ │ └── home │ │ └── _home.html │ ├── bowerrc │ ├── config.py │ ├── db_create.py │ ├── db_downgrade.py │ ├── db_migrate.py │ ├── db_upgrade.py │ ├── editorconfig │ ├── gitignore │ ├── install.bat │ ├── install.sh │ ├── jshintrc │ ├── run.py │ └── virtualenv.py ├── entity ├── index.js └── templates │ ├── _generator.json │ └── app │ ├── models │ └── _entity.py │ ├── routes │ └── _entities.py │ └── static │ ├── js │ └── entity │ │ ├── _entity-controller.js │ │ ├── _entity-router.js │ │ └── _entity-service.js │ └── views │ └── entity │ └── _entities.html ├── package.json └── test ├── test-creation.js └── test-load.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | temp/ 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/README.md -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/Gruntfile.js -------------------------------------------------------------------------------- /app/templates/README.md.erb: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | Blah blah 4 | 5 | -------------------------------------------------------------------------------- /app/templates/_bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/_bower.json -------------------------------------------------------------------------------- /app/templates/_generator.json: -------------------------------------------------------------------------------- 1 | <%= generatorConfigStr %> 2 | -------------------------------------------------------------------------------- /app/templates/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/_package.json -------------------------------------------------------------------------------- /app/templates/app/___init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/app/___init__.py -------------------------------------------------------------------------------- /app/templates/app/models/___init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/app/routes/___init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/app/routes/_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/app/routes/_index.py -------------------------------------------------------------------------------- /app/templates/app/static/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/app/static/_index.html -------------------------------------------------------------------------------- /app/templates/app/static/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/app/static/css/app.css -------------------------------------------------------------------------------- /app/templates/app/static/js/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/app/static/js/_app.js -------------------------------------------------------------------------------- /app/templates/app/static/js/home/_home-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/app/static/js/home/_home-controller.js -------------------------------------------------------------------------------- /app/templates/app/static/views/home/_home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/app/static/views/home/_home.html -------------------------------------------------------------------------------- /app/templates/bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/bowerrc -------------------------------------------------------------------------------- /app/templates/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/config.py -------------------------------------------------------------------------------- /app/templates/db_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/db_create.py -------------------------------------------------------------------------------- /app/templates/db_downgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/db_downgrade.py -------------------------------------------------------------------------------- /app/templates/db_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/db_migrate.py -------------------------------------------------------------------------------- /app/templates/db_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/db_upgrade.py -------------------------------------------------------------------------------- /app/templates/editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/editorconfig -------------------------------------------------------------------------------- /app/templates/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/gitignore -------------------------------------------------------------------------------- /app/templates/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/install.bat -------------------------------------------------------------------------------- /app/templates/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/install.sh -------------------------------------------------------------------------------- /app/templates/jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/jshintrc -------------------------------------------------------------------------------- /app/templates/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/run.py -------------------------------------------------------------------------------- /app/templates/virtualenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/app/templates/virtualenv.py -------------------------------------------------------------------------------- /entity/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/entity/index.js -------------------------------------------------------------------------------- /entity/templates/_generator.json: -------------------------------------------------------------------------------- 1 | <%= generatorConfigStr %> 2 | -------------------------------------------------------------------------------- /entity/templates/app/models/_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/entity/templates/app/models/_entity.py -------------------------------------------------------------------------------- /entity/templates/app/routes/_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/entity/templates/app/routes/_entities.py -------------------------------------------------------------------------------- /entity/templates/app/static/js/entity/_entity-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/entity/templates/app/static/js/entity/_entity-controller.js -------------------------------------------------------------------------------- /entity/templates/app/static/js/entity/_entity-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/entity/templates/app/static/js/entity/_entity-router.js -------------------------------------------------------------------------------- /entity/templates/app/static/js/entity/_entity-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/entity/templates/app/static/js/entity/_entity-service.js -------------------------------------------------------------------------------- /entity/templates/app/static/views/entity/_entities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/entity/templates/app/static/views/entity/_entities.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/package.json -------------------------------------------------------------------------------- /test/test-creation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/test/test-creation.js -------------------------------------------------------------------------------- /test/test-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayokota/generator-angular-flask/HEAD/test/test-load.js --------------------------------------------------------------------------------