-
Notifications
You must be signed in to change notification settings - Fork 5
Setup
dbraga edited this page Nov 11, 2014
·
2 revisions
Wiki ▸ Installation & Setup
- Thoth Index up and running
- Node.js installed
- Clone the project
npm install
node index.js
The environment.js contains basic configuration like Thoth Index URL and API port.
Make sure to point API to the right Thoth Index changing Thoth port and host:
process.env.PORT = process.env.PORT || 3001;
process.env.THOTH_PORT = process.env.THOTH_PORT || '8983';
process.env.THOTH_HOST = process.env.THOTH_HOST || 'localhost';
The entire configuration file is located here