|
|
@@ -1,6 +1,23 @@
|
|
1
|
1
|
# ip-project-server
|
|
2
|
2
|
Server for Integrated Project, powered by Express.js and Redis
|
|
3
|
3
|
|
|
|
4
|
+### Installation
|
|
|
5
|
+Instructions are for OSX El Capitan at time of writing.
|
|
|
6
|
+
|
|
|
7
|
+First install the Redis server:
|
|
|
8
|
+```
|
|
|
9
|
+brew install redis
|
|
|
10
|
+```
|
|
|
11
|
+Then clone this repository:
|
|
|
12
|
+```
|
|
|
13
|
+git clone https://github.com/Alpha-Atom/ip-project-server.git
|
|
|
14
|
+```
|
|
|
15
|
+And finally, install the dependencies
|
|
|
16
|
+```
|
|
|
17
|
+npm install
|
|
|
18
|
+```
|
|
|
19
|
+
|
|
|
20
|
+### Running
|
|
4
|
21
|
To run, first start Redis:
|
|
5
|
22
|
```
|
|
6
|
23
|
redis-server
|