Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop Update #8

Merged
merged 37 commits into from
Jul 29, 2016
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
16b3bec
Typo Fix
polonel Jun 21, 2016
fbcee64
Start of settings to DB
polonel Jun 28, 2016
3dd1f61
Settings saving to DB
polonel Jun 29, 2016
f52171b
Update nodemailer
polonel Jun 30, 2016
e14fc48
App API Fixes
polonel Jul 5, 2016
f929e6b
Fixes Heroku child process failure
polonel Jul 5, 2016
8f964a9
Updated NConf
polonel Jul 5, 2016
a3e19bf
Fixed issue with CORS loading
polonel Jul 8, 2016
d75298b
Fixed issue where mailer would still send mail even if mail was disabled
polonel Jul 9, 2016
ae318c8
Start of Installer
polonel Jul 12, 2016
f427d7b
Fixed issue is database test
polonel Jul 15, 2016
d2f7ea7
Package updates
polonel Jul 15, 2016
45979ba
Readme Updated
polonel Jul 15, 2016
6773f3e
Readme Updated
polonel Jul 15, 2016
34f2231
Readme Stuff
polonel Jul 15, 2016
ad6e717
Travis Fix and Update
polonel Jul 15, 2016
9d46404
Ton of fixes:
polonel Jul 18, 2016
da2e2cc
Install script restarter
polonel Jul 19, 2016
63f6695
Fixed bug where saving profile will remove user from all groups
polonel Jul 20, 2016
39c7e95
Fixed an issue with QueryString sometimes taking Ints as Strings
polonel Jul 20, 2016
dc695c7
Tags Settings Nav
polonel Jul 22, 2016
f7a9c0b
Server Logs
polonel Jul 23, 2016
701eb3f
Fixed issue with Heroku
polonel Jul 23, 2016
5de8934
Error handling when log file doesn't exists
polonel Jul 23, 2016
4ec8940
Fixed <pre> tag line spacing
polonel Jul 24, 2016
9897a23
CHANGELOG Added
polonel Jul 24, 2016
e2fc71f
Basic Tag updating / deleting
polonel Jul 26, 2016
cd62d75
Fixes #5
polonel Jul 26, 2016
887fa51
Fixes #6
polonel Jul 26, 2016
3337f03
minor performance enhancements
polonel Jul 27, 2016
80cf7a1
Fixes #3
polonel Jul 27, 2016
a33717f
Added Top Group and Top Tags to Dashboard
polonel Jul 27, 2016
fdb0797
Create ticket form now loads first values for select upon opening
polonel Jul 27, 2016
c37f24a
Changelog
polonel Jul 27, 2016
6a8c3d3
Disabled TPS by default
polonel Jul 27, 2016
eb3e9de
Updated Readme
polonel Jul 28, 2016
b8068ea
License File
polonel Jul 28, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
@@ -242,7 +242,7 @@ function dbCallback(err, db) {
//});

var fork = require('child_process').fork;
var n = fork(path.join(__dirname, '/src/cache/index.js'), { env: { FORK: 1, NODE_ENV: global.env } } );
var n = fork(path.join(__dirname, '/src/cache/index.js'), { env: { FORK: 1, NODE_ENV: global.env, MONGOHQ_URL: process.env.MONGOHQ_URL } } );

global.forks.push({name: 'cache', fork: n});

2 changes: 1 addition & 1 deletion src/views/logs.hbs
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@
</div>
<hr class="nomargin-top">
<div class="panel-body2" style="padding: 8px 5px">
<pre id="serverlogs" style="font-family: monospace; background:#fff; height: 400px; color: #000; line-height: 8.25px;">
<pre id="serverlogs" style="font-family: monospace; background:#fff; height: 400px; color: #000; line-height: normal;">
{{{data.logFileContent}}}
</pre>
</div>