Skip to content

A starter template for Meteor, using IronRouter and other smart packages

Notifications You must be signed in to change notification settings

anuragphadke19/firestarter

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A heavily modified fork of Void

A starter boilerplate app template for Meteor using the following packages:

Installation

If you already have Meteor, Firestarter is ready to go. Just clone it locally, run it with meteor, and start coding!

If not, here are the full instructions:

curl https://install.meteor.com | /bin/sh
git clone https://github.com/anuragphadke19/firestarter.git myApp
cd myApp
git remote -v
git remote rm origin
git remote add origin (github or bitbucket repository URL)
meteor or meteor --port $IP:$PORT (if you are using c9.io)

Features

  • Client-side routing
  • Publications/subscriptions
  • Basic permissions
  • Common templates
  • Basic authentication system
  • Boostrap based authentication UI
  • Fontawesome & Bootstrap 3 support
  • A built in flash message system

Principles

Opinionated structure and patterns a la rails

File Structure

  • client
    • CSS
      • user.css
      • main.css
    • helpers
      • flash.js
      • handlebars.js
      • router.js
    • views
      • common
        • footer.html
        • header.html
        • header.js
        • layout.html
        • loading.html
        • notFound.html
      • items
        • item.html
        • item.js
        • items.html
        • items.js
      • pages
        • about.html
        • homepage.html
      • users
        • forgot.html
        • forgot.js
        • login.html
        • login.js
        • signup.html
        • signup.js
    • main.html
    • main.js
  • models
    • items.js
  • lib
    • helpers.js
    • permissions.js
  • packages
    • sample-package
    • flash-messages
  • public
  • server
    • seed.js
    • publications.js

About

A starter template for Meteor, using IronRouter and other smart packages

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 80.4%
  • CSS 19.6%