├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Specifies files to intentionally ignore when using Git 2 | # http://git-scm.com/docs/gitignore 3 | 4 | node_modules/ 5 | www/build/ 6 | platforms/ 7 | plugins/ 8 | *.swp 9 | .DS_Store 10 | Thumbs.db 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Ionic 2 2 | 3 | This repo no long has any purpose with the current CLI and should not be used anymore. Please follow the instructions for creating new projects using the CLI 4 | 5 | http://ionicframework.com/docs/v2/getting-started/installation/ 6 | --------------------------------------------------------------------------------