UNPKG

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