-
Notifications
You must be signed in to change notification settings - Fork 5
Setup
dbraga edited this page Nov 28, 2014
·
2 revisions
Wiki ▸ Installation & Setup
- Thoth Index up and running
- Node.js installed
- Clone the project
npm install
npm start
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