GPL v3 http://www.gnu.org/licenses/gpl-3.0.ru.html
mkdir helpdesk
cd ./helpdesk
git clone https://github.com/SibirixScrum/HelpDesk.git ./
npm i
cd ./config
cp ./config.example.js ./config.js
mcedit ./config.js
- connectString: 'mongodb://localhost/helpdesk' — база в mongo. Будет создана при первом запуске, если еще не существует.
- exports.projects — настройки проектов.
- responsible: '[email protected]' — почта администратора проекта. Аккаунт создается автоматически. Пароль отправляется на почту.
- exports.socketIo: 'SECRETKEY' — секретный ключ для шифрования куков.
- exports.session.secret: 'SECRETKEY' — секретный ключ для шифрования сессий.
- exports.locales=['ru', 'en'] — доступные языки: английский и русский.
- en.json — английский язык.
- ru.json — русский язык.
node app.js
GPL v3 http://www.gnu.org/licenses/gpl-3.0.en.html
mkdir helpdesk
cd ./helpdesk
git clone https://github.com/SibirixScrum/HelpDesk.git ./
npm i
cd ./config
cp ./config.example.js ./config.js
mcedit ./config.js
- connectString: 'mongodb://localhost/helpdesk' — MongoDB database will be created (in case there isn’t any done yet by the time the program is launched for the first time).
- exports.projects — projects settings.
- responsible: '[email protected]' — email of project Administrator. The account is created automatically, the password is sent to the email.
- exports.socketIo: 'SECRETKEY' — a private key for cookies encryption.
- exports.session.secret: 'SECRETKEY' — a private key for sessions encryption.
- exports.locales=['ru', 'en'] — available languages: English and Russian.
- en.json — English.
- ru.json — Russian.
node app.js