An easy-to-use platform for EEG experimentation in the classroom
at main 8 lines 503 B view raw
1// These values must be filled with the appropriate Emotiv credentials to be able to use the Cortex SDK 2// We have our credentials stored in environement variables 3 4const CLIENT_ID = process.env.CLIENT_ID; // Created through Cortex Apps page on Emotiv.com 5const CLIENT_SECRET = process.env.CLIENT_SECRET; // Created through Cortex Apps page on Emotiv.com 6const LICENSE_ID = process.env.LICENSE_ID; // Visible on My Account page of Emotiv.com 7 8module.exports = { CLIENT_ID, CLIENT_SECRET, LICENSE_ID };