Compare commits

..

No commits in common. "f36d0686a1af686b61dc98b25b8f893dd135676a" and "123d4155b43565242a10a9a3cd44953bc0e44baf" have entirely different histories.

7 changed files with 7 additions and 10 deletions

View File

@ -16,14 +16,12 @@
<p <p
v-if="config.showDisclaimer" v-if="config.showDisclaimer"
class="disclaimer" class="disclaimer"
v-html="config.disclaimer" >{{ config.disclaimer }}</p>
/>
<p <p
v-if="config.showAnnouncement" v-if="config.showAnnouncement"
class="announcement" class="announcement"
v-html="config.announcement" >{{ config.announcement }}</p>
/>
<div <div
ref="content" ref="content"

View File

@ -13,7 +13,6 @@ module.exports = {
database: 'traxxx', database: 'traxxx',
}, },
timeout: 5000, timeout: 5000,
graphiql: false,
}, },
web: { web: {
host: '0.0.0.0', host: '0.0.0.0',

View File

@ -2,6 +2,7 @@
module.exports = { module.exports = {
apps: [ apps: [
// LEAFS
{ {
name: 'traxxx', name: 'traxxx',
script: 'src/init.js', script: 'src/init.js',

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "traxxx", "name": "traxxx",
"version": "1.228.6", "version": "1.228.4",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "traxxx", "name": "traxxx",
"version": "1.228.6", "version": "1.228.4",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@casl/ability": "^5.2.2", "@casl/ability": "^5.2.2",

View File

@ -1,6 +1,6 @@
{ {
"name": "traxxx", "name": "traxxx",
"version": "1.228.6", "version": "1.228.4",
"description": "All the latest porn releases in one place", "description": "All the latest porn releases in one place",
"main": "src/app.js", "main": "src/app.js",
"scripts": { "scripts": {

View File

@ -27,7 +27,7 @@ function initPostgraphile(credentials) {
// watchPg: true, // watchPg: true,
disableDefaultMutations: true, disableDefaultMutations: true,
dynamicJson: true, dynamicJson: true,
graphiql: config.database.graphiql, graphiql: true,
enhanceGraphiql: true, enhanceGraphiql: true,
allowExplain: () => true, allowExplain: () => true,
// simpleCollections: 'only', // simpleCollections: 'only',

View File

@ -72,7 +72,6 @@ async function initServer() {
const store = new KnexSessionStore({ knex }); const store = new KnexSessionStore({ knex });
app.set('view engine', 'ejs'); app.set('view engine', 'ejs');
app.disable('x-powered-by');
router.use('/media', express.static(config.media.path)); router.use('/media', express.static(config.media.path));
router.use(express.static('public')); router.use(express.static('public'));