Skip to content

Commit a5ef905

Browse files
committed
Merge branch 'master' of github.com:Bushido/kandan into style_fix
2 parents 63fc1fa + 868b4fb commit a5ef905

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

README.md

+33
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,40 @@ You'll need to have the [heroku gem](https://github.com/heroku/heroku) installed
4343
heroku create --stack cedar
4444
git push heroku master
4545
heroku run rake db:migrate kandan:bootstrap && heroku open
46+
echo "Done, go forth and chat!"
47+
# Not too bad
4648

4749

4850
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.
4951

5052
## dotCloud
5153
Looking for community help here.
5254

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
74+
75+
# Bootstrap the install
76+
bundle exec rake db:create db:migrate kandan:bootstrap
77+
bundle exec rails server
78+
79+
5380
TODO
5481
====
5582
See the issue tracker
@@ -64,6 +91,12 @@ That's not a question, it's an order! Or more of a friendly offer, really. Kanda
6491
* [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
6592
* ... is there a fifth way? Telegram maybe?
6693

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+
67100
LICENSE
68101
=======
69102
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

Comments
 (0)