Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chihchengliang/mini-meteor-boilerplate
https://github.com/chihchengliang/mini-meteor-boilerplate
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/chihchengliang/mini-meteor-boilerplate
- Owner: ChihChengLiang
- Created: 2015-03-11T10:27:16.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-11T10:28:03.000Z (almost 10 years ago)
- Last Synced: 2024-10-28T23:21:57.019Z (2 months ago)
- Language: CoffeeScript
- Size: 102 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Meteor minimalism boilerplate
This is a meteor boilerplate aimmed for extremely agile development.
Switching between complex project structure is painful, so why not make it simple? Mostly handling `main.jade` and `main.coffee`, you can develop your prototype meteor app in text editor with two vertical split, minimizing the needs to switch between files. Use complex project structure when project goes fat. (Special thanks to (c3h3)[https://github.com/c3h3]'s advice)
# Packages dependency
- coffeescript
- mquandalle:jade
- nooitaf:semantic-ui
- digilord:sugarjs# Cheat sheet for developer
Meteor debug tool is your friend and often saves your day.
```
meteor debug
```Using external mongodb intead of minimongo
```
MONGO_URL=mongodb://localhost:27017/YOUR_DATABASE meteor
```Remove autopublish and insecure when going production.
```
meteor remove autopublish insecure
```