macOS
brew install pkg-config cairo pango libpng jpeg giflib
Ubuntu
sudo apt install libcairo2-dev libjpeg8-dev libpango1.0-dev libgif-dev build-essential g++
git clone https://github.com/kurisubrooks/midori.git
cd midori
npm install
Create a file called keychain.json
in the main directory, with the following contents, filling in each line with the appropriate keys needed for each. (Make sure to remove the comments)
{
"self": "", // Discord Bot Token
"darksky": "", // DarkSky Weather API Key
"sherlock": "", // Sherlock API Key
"google": {
"cx": "", // Google Search API CX
"search": "", // Google Search API Key
"geocode": "" // Google Geolocation API Key
}
}
You can start Midori by simply typing the following:
npm start
If you wish to run Midori under Production, you can start her with pm2 by using
pm2 start index.js --name "midori" -- --color
Thanks for taking interest in Midori! I've included some build commands through the Gulp build tool, some of which you might find useful.
Linting
Run this command to find errors in your syntax.
(You'll need to do this if you plan on submitting any Pull Requests!)
npm run lint
Run
Run this command to start Midori.
You'll need to do this from the root directory
npm start