diff --git a/.gitignore b/.gitignore index 9bcc1f4..cb071be 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .DS_Store node_modules certs +config.json diff --git a/README.md b/README.md index f89f5a3..423a810 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # What is this? This is the Pretendo Network Miiverse API Server, which replaces the former Nintendo Network Miiverse API Server *.olv.nintendo.net # Install and usage -First install [NodeJS](https://nodejs.org) and [MongoDB](https://mongodb.com). Download/clone this repo and run `npm i` to install all dependencies. Edit `src/config.json` to your liking. Run the server via `npm run start`. +First install [NodeJS](https://nodejs.org) and [MongoDB](https://mongodb.com). Download/clone this repo and run `npm i` to install all dependencies. Create a `config.json` to your liking (example in `config.example.json`). Run the server via `npm run start`. # To-Do - [x] Discovery Server - [x] Posts Server diff --git a/src/config.example.json b/config.example.json similarity index 100% rename from src/config.example.json rename to config.example.json diff --git a/src/database.js b/src/database.js index d2cd013..893e77e 100644 --- a/src/database.js +++ b/src/database.js @@ -1,5 +1,5 @@ const mongoose = require('mongoose'); -const { mongoose: mongooseConfig } = require('./config.json'); +const { mongoose: mongooseConfig } = require('../config.json'); const { ENDPOINT } = require('./models/endpoint'); const { COMMUNITY } = require('./models/communities'); const { POST } = require('./models/post'); diff --git a/src/server.js b/src/server.js index 625d3a4..005b3bb 100644 --- a/src/server.js +++ b/src/server.js @@ -4,7 +4,7 @@ const morgan = require('morgan'); const xmlparser = require('./middleware/xml-parser'); const database = require('./database'); const logger = require('./logger'); -const config = require('./config.json'); +const config = require('../config.json'); const { http: { port } } = config; const app = express(); diff --git a/src/util/util.js b/src/util/util.js index 15c1733..b26bb84 100644 --- a/src/util/util.js +++ b/src/util/util.js @@ -2,7 +2,7 @@ const crypto = require('crypto'); const NodeRSA = require('node-rsa'); const fs = require('fs-extra'); const database = require('../database'); -const config = require('../config.json'); +const config = require('../../config.json'); const xmlParser = require('xml2json'); const request = require("request"); const moment = require('moment');