File size: 1,540 Bytes
3f268e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# Setup

Here are the steps to setup your own dana server.

## Requirements

As a requirement, you need to have node.js installed on your machine. [See nodejs download](https://nodejs.org/en/download/).

## Instructions for Mac/Linux

First, install dependent node modules

```
$ npm install
```

Second, you need to create a **configs** directory. The database and temporary dana working files will be created in this directory.

```
$ mkdir configs
```

Then, you have to create a **configs/dana.js** file that will provide
- *adminUser* property to specify the *login*, *password* and *email* of the administrator of your dana server.
- *server* property to specify the *ip* and *port* to use from the browser

This file should be like this:

```
module.exports = {
  adminUser: {
    login: 'admin',
    password: 'admin',
    email: '[email protected]'
  },
  server: {
    ip:'localhost',
    port: 7000
  }
}
```

You're ready to run the server :)

Note you need to add some pages for the projects. See [adding project pages](Project.md) to know how to add pages to the dashboard for a project).

To start the server, there are two options:

```
$ node src/server.js
or
$ npm start
```

## Configure email account

Dana provides a way to use a gmail account to send emails using Gmail APIs. Follow [these steps](http://pcarion.com/2015/12/06/How-to-send-a-mail-in-node-using-the-gmail-API.html) to get **clientsecret.json** and **gmail-credentials.json**. Then put these 2 files in **configs/** directory and restart Dana server.