-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
76 lines (46 loc) · 2.29 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
YANEL README
=============
Requirements and Prerequisites
------------------------------
Java Development Kit version 1.6 or higher (e.g. http://java.sun.com).
NOTES:
- Depending on your network connection, you might have to configure a proxy.
Please see below ("Proxy Configuration") for more details.
- Depending on the bandwidth of your network connection, building Yanel
might take a while initially, because various libraries will be downloaded
during the process. These libraries will be saved at ~/.m2/repository/
whereas ~ denotes your home directory.
Quick Start
-----------
1) Build Yanel by running (whereas build will be without SSL, but please use configure further down to setup Yanel with SSL)
UNIX: ./build.sh quick-start
Windows: build.bat quick-start
2) Start Yanel by running
UNIX: ./yanel.sh start
Windows: yanel.bat start
3) Browse to http://127.0.0.1:8080/yanel/
Getting Started at Length
-------------------------
0) Clean a previous build by running "build clean-all"
1) Configure Yanel by running "configure"
After "configure" has finished, you may want to review the contents of
the file './src/build/local.build.properties' to better understand the parameters
which the "build" process will be using.
2) Build Yanel by running "build"
3) Start using Yanel with one of the following options
3.1) Run within Tomcat: "yanel start/stop" to start or stop Tomcat
3.2) Run within Jetty: "yanel start-jetty" to start Jetty
3.3) Run from the Command Line: "yanel /hello/world.html"
4) Browse to http://127.0.0.1:8080/yanel/
5) Run tests
5.1) Run junit and html unit tests: "build test"
5.2) Run continuous integration: "./src/build/targets/continuous-integration/reCI"
More Information
----------------
Please refer your questions to the appropriate mailing list at
http://www.yanel.org/mailing-lists.html
Proxy Configuration
-------------------
If your network connection requires you to use an HTTP proxy,
then set your proxy configuration (Properties proxy.host, proxy.port, proxy.user, proxy.pass)
in the file "src/build/(local.)build.properties".