/!\ That project is oviously at least paused since 2014. Many things had changed since then in the Meteor multiverse. Keeping it here anyway, in case I'll dive back into Metor some day.
A simple Meteor repo, Yeoman-like starter, to spare you the time of creating folders structure and installing the essential(could change) packages you'll maybe need in addition to Meteor Core.
You clearly can add others with $ meteor add packageName remove stuff with $ meteor remove packageName, check the actually installed ones with $ meteor list or update all packages+core with the $ meteor update command. To find the package you miss, head to Atmosphere for the easy way to browse them.
At the moment it's just a beginning, so feel free to get in touch, throw ideas or wishes in the Issues, Star, Fork, ...
From the Console, into the folder you want to create your app :
$ git clone https://github.com/AndreiCurelaru/MeteorSkeleton.git MyApp
$ cd MyApp
$ meteor
At that point, you should be able to see your basic app on http://localhost:3000 or 127.0.0.1:3000
When possible, some minimal dummy data is already in the directories, along with some code comments to show basics "how did it works".
- accounts-password 1.0.4 Password support for accounts. on Atmosphere, on Meteor.com
- accounts-ui 1.1.3 Simple templates to add login widgets to an app. on Atmosphere
- alanning:roles 1.2.13 Role-based authorization. on Atmosphere
- fourseven:scss 1.0.0 Style with attitude and autoprefixer. // + Bourbon & Neat. on Atmosphere
- nooitaf:semantic-ui 0.19.3 Semantic UI packaged for Meteor. on Atmosphere
- jquery Manipulate the DOM using CSS selectors. on Atmosphere
Next, will add a NoFramework option, or Bootstrap/Foundation
- iron:router 1.0.0 Routing specifically designed for Meteor. on Atmosphere
- tap:i18n 1.0.7 A comprehensive internationalization solution. on Atmosphere
- mike:mocha 0.4.4 Run mocha tests in the browser. on Atmosphere
- spiderable 1.0.5 Makes the application crawlable to web spiders. on Atmosphere
- insecure 1.0.1 Allow all database writes by default. on Atmosphere
- meteor-platform 1.2.0 Include a standard set of Meteor packages in your... on Atmosphere
Just in case : Meteor 1.0 Docs
I'll complete this README with more details on the included files and directories, plus some other ressources.
Andrei