forked from shaunph/CourseProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
32 lines (19 loc) · 805 Bytes
/
README
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
University of Calgary
CPSC 301 (W11)
Course Project
To run the server (in a UNIX environment with the bash shell), use
$ ./runserver <port>
where port is a positive integer > 1023. To run the server on a different
environment, use
$ node js/dispatcher.js <node>
To interact with the server with your internet browser, browse host:port
where host is the hostname of the machine you are running the server
from, and port is the port you specified. For example, if running
the server on csc.cpsc.ucalgary.ca with port 5678, browse to
csc.cpsc.ucalgary.ca:5678
or even just
csc:5678
if you are running your browser on a machine which is within the cpsc network.
Before opening the task page, make sure a database is created first using:
$ node js/createDatabase.js
from the CourseProject folder.