├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── deployapi.js ├── index.js ├── package.json ├── roadmap.md ├── sampleAPI ├── index.js ├── package-lock.json └── package.json ├── server-setup.md └── test └── deployapi.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaintea/create-mithril-app/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaintea/create-mithril-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaintea/create-mithril-app/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaintea/create-mithril-app/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaintea/create-mithril-app/HEAD/README.md -------------------------------------------------------------------------------- /deployapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaintea/create-mithril-app/HEAD/deployapi.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaintea/create-mithril-app/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaintea/create-mithril-app/HEAD/package.json -------------------------------------------------------------------------------- /roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaintea/create-mithril-app/HEAD/roadmap.md -------------------------------------------------------------------------------- /sampleAPI/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaintea/create-mithril-app/HEAD/sampleAPI/index.js -------------------------------------------------------------------------------- /sampleAPI/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaintea/create-mithril-app/HEAD/sampleAPI/package-lock.json -------------------------------------------------------------------------------- /sampleAPI/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaintea/create-mithril-app/HEAD/sampleAPI/package.json -------------------------------------------------------------------------------- /server-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaintea/create-mithril-app/HEAD/server-setup.md -------------------------------------------------------------------------------- /test/deployapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaintea/create-mithril-app/HEAD/test/deployapi.js --------------------------------------------------------------------------------