Added README.md

Georgios Larkou 14 年之前
父节点
当前提交
252cd3918f
共有 1 个文件被更改,包括 63 次插入0 次删除
  1. 63 0
      README.md

+ 63 - 0
README.md

@@ -0,0 +1,63 @@
1
+Running Faye Server on Heroku Cedar stack
2
+=========================================
3
+
4
+Clone repository
5
+----------------
6
+
7
+Browse to your desirable application directory:
8
+	
9
+	cd to_directory
10
+
11
+eg:
12
+	
13
+	cd my_faye_server
14
+	
15
+Clone from GitHub:
16
+	
17
+	git clone git://github.com/ntenisOT/Faye-Server-Cedar.git
18
+	
19
+Initializing git and first commit
20
+---------------------------------
21
+
22
+Initialize git:
23
+	
24
+	git init
25
+	
26
+Add files:
27
+	
28
+	git add .
29
+	
30
+First Commit:
31
+	
32
+	git commit -m "First Commit"
33
+	
34
+Creating a new app on Heroku
35
+----------------------------
36
+
37
+Install Heroku gem if you do not have already installed it:
38
+	
39
+	gem install heroku
40
+
41
+Creating a new app running on Cedar stack:
42
+	
43
+	heroku create app_name --stack cedar
44
+
45
+	
46
+Push code to Heroku
47
+-------------------
48
+	
49
+Push files to Heroku:
50
+	
51
+	git push heroku master
52
+	
53
+
54
+Go to you provided by Heroku link and check that your application is working!
55
+
56
+References
57
+----------
58
+* Faye - http://faye.jcoglan.com/
59
+* Heroku - http://heroku.com
60
+
61
+Special Thanks
62
+--------------
63
+* James Coglan - Faye Developer