UNPKG

349 BJavaScriptView Raw
1const _ = require('lodash');
2const Chillastic = require('./index'); // Replace with 'require('chillastic')' if you're outside of this repo
3
4const REDIS_HOST = 'localhost';
5const REDIS_PORT = 6379;
6const CHILL_PORT = _.random(4000, 8000);
7
8const chillastic = Chillastic(REDIS_HOST, REDIS_PORT, CHILL_PORT);
9
10// Start it up!
11chillastic.run();
\No newline at end of file