You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+33
Original file line number
Diff line number
Diff line change
@@ -43,13 +43,40 @@ You'll need to have the [heroku gem](https://github.com/heroku/heroku) installed
43
43
heroku create --stack cedar
44
44
git push heroku master
45
45
heroku run rake db:migrate kandan:bootstrap && heroku open
46
+
echo "Done, go forth and chat!"
47
+
# Not too bad
46
48
47
49
48
50
Your app should be up and running now. The admin email by default is `[email protected]` with password `kandanadmin`, or you can sign up as another user.
49
51
50
52
## dotCloud
51
53
Looking for community help here.
52
54
55
+
## Masochist server install
56
+
If you're looking to install Kandan on a private server (why??) then here are some notes you'll want to read:
57
+
58
+
# For development-mode
59
+
sudo apt-get install nodejs # (execjs needed an execution environment)
60
+
gem install execjs # (maybe I could have just added this to the gemfile?)
61
+
62
+
# Add this to the gemfile:
63
+
group :development do
64
+
gem 'sqlite3'
65
+
end
66
+
67
+
# Get the new gems
68
+
bundle install
69
+
70
+
# Use the default database.yml to get started
71
+
cp config/database.yml.sample config/database.yml
72
+
73
+
# Edit config/database.yml if you want to use postgres/mysql
@@ -64,6 +91,12 @@ That's not a question, it's an order! Or more of a friendly offer, really. Kanda
64
91
*[New-wave open-source meetup](www.meetup.com/San-Francisco-New-Wave-Open-Source-Apps/) - we meetup once a month to share tips on how developers grow business around super high-quality open source software
65
92
* ... is there a fifth way? Telegram maybe?
66
93
94
+
Credits
95
+
=======
96
+
* CloudFuji for leading and sponsoring the initial development of Kandan
97
+
*[Sacha Greif](http://sachagreif.com/i-wrote-a-book/) for his __amazing__ design job and exacting implemntation standards on Kandan. A wonder and a pleasure to work with.
98
+
*[Andrew Hampton](https://github.com/andrewhampton) For the initial manual server install instructions
99
+
67
100
LICENSE
68
101
=======
69
102
Kandan's code and assets are dual-licensed. Kanda is available generally under the AGPL, and also under a custom license via special agreement. See LICENSE for the AGPL terms, and contact us at [[email protected]](mailto:[email protected]) if you're interested in development of Kandan under a custom license.
0 commit comments