bborn / lewsnetter

E-mail marketing application (create and send e-mail newsletter via SES). Includes subscription management, delivery, bounce and complaint notification, templates, and some stats.
MIT License
318 stars 42 forks source link

install guide #3

Closed joubertredrat closed 9 years ago

joubertredrat commented 9 years ago

Is possbile to create install guide for clean vps/bare metal?

bborn commented 9 years ago

I probably won't be able to do it; but I'd be happy to post it if someone wants to come up with it. It's basically just a Rails app with some dependencies (i.e. Redis and Memcache). The app.json should give you a good sense of which ENV variables need to be set. Maybe someone can look at getting this Dockerized?

joubertredrat commented 9 years ago

I'm deploy on heroku, but I don't understand about deploy rails applications, then I don't know this guide "Using the console, turn that account into an admin user (user.update(is_admin:true, approved: true))"

bborn commented 9 years ago

From the command line:

heroku run console user = User.first user.update({is_admin:true, approved: true})

joubertredrat commented 9 years ago

I will try here, thanks