]>
Commit | Line | Data |
---|---|---|
7eb26514 RBR |
1 | # dasein |
2 | A social network | |
cc69fef4 | 3 | |
287fa13b RBR |
4 | ## Configuring |
5 | ||
6 | This project usese environment variables to work. For most cases, the | |
7 | defaults work but some sensitive info like keys must be overridden. Copy | |
8 | the file in `config/env.dist` to `.env` in the project root and override | |
9 | the values. | |
10 | ||
11 | When running with `make run`, it'll pick up these values automatically. | |
12 | If you're doing it the hard way, you'll have to source them. | |
13 | ||
cc69fef4 RBR |
14 | ## Running Locally |
15 | ||
16 | You'll need [Docker][docker] to run the project. | |
17 | ||
18 | * Run the image with `make run` | |
19 | ||
20 | ## Running locally the hard way | |
21 | ||
22 | If you don't want to use docker, you can also run it the old fashioned | |
23 | way. | |
24 | ||
25 | 1. Install dependencies with `yarn install` (recommended), or `npm install` | |
26 | 2. Run with `npm start` | |
27 | ||
28 | ## Generating documentation | |
29 | ||
a6ccda0f RBR |
30 | This project uses JSDoc to generate documentation. Generate everything |
31 | with `npm run document`. The documentation will be generated in the | |
32 | `doc` directory. | |
cc69fef4 RBR |
33 | |
34 | ## Building and pushing the image | |
35 | ||
36 | You can also do some other operations | |
37 | ||
38 | * Build the image with `make build` | |
39 | * Push and build the image with `make upload` | |
40 | * Clean the environment with `make clean` | |
41 | ||
287fa13b RBR |
42 | ## Setting up Twitter for login |
43 | ||
44 | 1. Create an app on https://apps.twitter.com/ | |
45 | 2. Make sure you check "Allow this application to be used to Sign in with Twitter" | |
46 | 3. Make sure you specify a callback URL (eg. http://localhost:1927/login-callback) | |
47 | ||
cc69fef4 RBR |
48 | ## Checking the code |
49 | ||
50 | This project uses the [Hapi Style Guide][hapi-style-guide] for | |
51 | javascript style, and includes eslint configuration to check them. Run | |
52 | `npm run lint` to check the code. | |
53 | ||
54 | [docker]: https://www.docker.com/ | |
55 | [hapi-style-guide]: https://hapijs.com/styleguide |