How to install meteor with Auth | nodejs web framework
Instructions for ubuntu only. (specifically ubuntu 12.04 LTS , but should work on 10.04 +)
- sudo apt-get install git (ignore if git already installed)
- cd /tmp
- git clone -b auth git://github.com/meteor/meteor.git
- cd meteor
- sudo ./install.sh
You are done!
Go to any directory, create a meteor app.
Example :
- cd /home/USERNAME
- meteor create my_auth_app
- meteor add accounts-ui
- meteor add accounts-google accounts-facebook accounts-password
- meteor
Your app is now auth enabled, with facebook and google login and username/password registration/login.
More instructions at https://github.com/meteor/meteor/wiki/Getting-Started-with-Auth
Comment