contrib/opportunity: revamp style of welcome page and use branding
[nit.git] / contrib / opportunity / src / opportunity_web.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License
14
15 # Web server for Opportunity : A meetup scheduler for real-world encounters !
16 module opportunity_web
17
18 import opportunity_controller
19 import opts
20 import privileges
21
22 # Avoids a crash when running automatic tests
23 if "NIT_TESTING".environ == "true" then exit 0
24
25 var iface = "localhost:8080"
26
27 var vh = new VirtualHost(iface)
28 vh.routes.add new Route("/rest/", new OpportunityRESTAction)
29 vh.routes.add new Route("/static/", new FileServer("art"))
30 vh.routes.add new Route(null, new OpportunityWelcome)
31
32 var fac = new HttpFactory.and_libevent
33 fac.config.virtual_hosts.add vh
34
35 print "Launching server on http://{iface}/"
36 fac.run