瀏覽代碼

Force jquery-ui version to fix pb with beta version we can get with npm

Use Maven in place of ant
Add --host parameter for jicofo
Add build for jitsi Meet

Revert "Force jquery-ui version to fix pb with beta version we can get with npm"

This reverts commit 35a8641e62.
j8
Samuel Liard 9 年之前
父節點
當前提交
df6f920b44
共有 1 個檔案被更改,包括 12 行新增6 行删除
  1. 12
    6
      doc/manual-install.md

+ 12
- 6
doc/manual-install.md 查看文件

131
 
131
 
132
 ## Install Jitsi Conference Focus (jicofo)
132
 ## Install Jitsi Conference Focus (jicofo)
133
 
133
 
134
-Install JDK and Ant if missing:
134
+Install JDK and Maven if missing:
135
 ```
135
 ```
136
-apt-get install default-jdk ant
136
+apt-get install default-jdk maven
137
 ```
137
 ```
138
 
138
 
139
 _NOTE: When installing on older Debian releases keep in mind that you need JDK >= 1.7._
139
 _NOTE: When installing on older Debian releases keep in mind that you need JDK >= 1.7._
145
 Build distribution package. Replace {os-name} with one of: 'lin', 'lin64', 'macosx', 'win', 'win64'.
145
 Build distribution package. Replace {os-name} with one of: 'lin', 'lin64', 'macosx', 'win', 'win64'.
146
 ```sh
146
 ```sh
147
 cd jicofo
147
 cd jicofo
148
-ant dist.{os-name}
148
+mvn package -DskipTests -Dassembly.skipAssembly=false
149
 ```
149
 ```
150
 Run jicofo:
150
 Run jicofo:
151
 ```sh
151
 ```sh
152
-cd dist/{os-name}'
153
-./jicofo.sh --host=127.0.0.1 --domain=jitsi.example.com --secret=YOURSECRET2 --user_domain=auth.jitsi.example.com --user_name=focus --user_password=YOURSECRET3
152
+=======
153
+unzip target/jicofo-{os-name}-1.0-SNAPSHOT.zip
154
+cd jicofo-{os-name}-1.0-SNAPSHOT'
155
+./jicofo.sh --host=localhost --domain=jitsi.example.com --secret=YOURSECRET2 --user_domain=auth.jitsi.example.com --user_name=focus --user_password=YOURSECRET3
154
 ```
156
 ```
155
 
157
 
156
 ## Deploy Jitsi Meet
158
 ## Deploy Jitsi Meet
159
 cd /srv
161
 cd /srv
160
 git clone https://github.com/jitsi/jitsi-meet.git
162
 git clone https://github.com/jitsi/jitsi-meet.git
161
 mv jitsi-meet/ jitsi.example.com
163
 mv jitsi-meet/ jitsi.example.com
164
+npm install -g browserify
165
+npm install
166
+make
162
 ```
167
 ```
163
 
168
 
164
 Edit host names in `/srv/jitsi.example.com/config.js` (see also the example config file):
169
 Edit host names in `/srv/jitsi.example.com/config.js` (see also the example config file):
167
     hosts: {
172
     hosts: {
168
         domain: 'jitsi.example.com',
173
         domain: 'jitsi.example.com',
169
         muc: 'conference.jitsi.example.com',
174
         muc: 'conference.jitsi.example.com',
170
-        bridge: 'jitsi-videobridge.jitsi.example.com'
175
+        bridge: 'jitsi-videobridge.jitsi.example.com',
176
+        focus: 'focus.jitsi.example.com'
171
     },
177
     },
172
     useNicks: false,
178
     useNicks: false,
173
     bosh: '//jitsi.example.com/http-bind', // FIXME: use xep-0156 for that
179
     bosh: '//jitsi.example.com/http-bind', // FIXME: use xep-0156 for that

Loading…
取消
儲存