Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/langalex/klettern
Just playing around.
https://github.com/langalex/klettern
Last synced: 15 days ago
JSON representation
Just playing around.
- Host: GitHub
- URL: https://github.com/langalex/klettern
- Owner: langalex
- Created: 2013-01-21T20:16:43.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-01-28T20:15:29.000Z (almost 12 years ago)
- Last Synced: 2024-11-30T20:47:31.822Z (23 days ago)
- Language: JavaScript
- Homepage: http://langalex.github.com/klettern
- Size: 1.03 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Creating a new Hoodie App
$ npm install -g local-tld
$ git clone https://github.com/hoodiehq/hoodie-app-skeleton.git myapp
$ cd myapp
$ npm install
$ port=8080 \
couchdb_url=nodejitsudb12345.iriscouch.com \
HOODIE_SERVER=http://nodejitsudb12345.iriscouch.com \
HOODIE_ADMIN_USER=admin \
HOODIE_ADMIN_PASS=party \
node node_modules/hoodie-app/lib/hoodie-app.js
...
Your app is ready now.Now you can go to `http://localhost:8080` to visit your app.
(TBD: that currently doesn’t actually work, you need to pudeploysh to nodejitsu)## Deplying to Nodejitsu
This assumes you have a nodejitsu account set up.
Configuration:
$ jitsu config set port 8080
# the other config vars from above
...Deploy
$ jitsu deploy
...
ok.You can now go to `http://yourapp.jit.so`. Boom
## Installing the email confirmation worker
$ npm install --save https://github.com/hoodiehq/worker-email-signup-confirmation.git
Starting the app now requires a few extra config variables:
HOODIE_EMAIL_HOST=mail.gmail.com \
HOODIE_EMAIL_USER=gmailusername \
HOODIE_EMAIL_PASS=gamailpassword