cwaring / meteor-basic-auth

A simple way to protect your app with basic HTTP auth
https://atmospherejs.com/kit/basic-auth
2 stars 1 forks source link

Basic Auth

A simple way to protect your app with HTTP auth

meteor add kit:basic-auth

Usage

Protection is enabled when you load your Meteor app with a settings.json file and the basicAuth key:

// settings.json
{
  "basicAuth": {
    "username": "auth",
    "password": "pass"
  }
}
meteor --settings settings.json

MIT license