Compare commits
4 Commits
123d4155b4
...
f36d0686a1
Author | SHA1 | Date |
---|---|---|
|
f36d0686a1 | |
|
d6b44615a0 | |
|
687d4aec08 | |
|
18f75595da |
|
@ -16,12 +16,14 @@
|
|||
<p
|
||||
v-if="config.showDisclaimer"
|
||||
class="disclaimer"
|
||||
>{{ config.disclaimer }}</p>
|
||||
v-html="config.disclaimer"
|
||||
/>
|
||||
|
||||
<p
|
||||
v-if="config.showAnnouncement"
|
||||
class="announcement"
|
||||
>{{ config.announcement }}</p>
|
||||
v-html="config.announcement"
|
||||
/>
|
||||
|
||||
<div
|
||||
ref="content"
|
||||
|
|
|
@ -13,6 +13,7 @@ module.exports = {
|
|||
database: 'traxxx',
|
||||
},
|
||||
timeout: 5000,
|
||||
graphiql: false,
|
||||
},
|
||||
web: {
|
||||
host: '0.0.0.0',
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
|
||||
module.exports = {
|
||||
apps: [
|
||||
// LEAFS
|
||||
{
|
||||
name: 'traxxx',
|
||||
script: 'src/init.js',
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.228.4",
|
||||
"version": "1.228.6",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "traxxx",
|
||||
"version": "1.228.4",
|
||||
"version": "1.228.6",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@casl/ability": "^5.2.2",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.228.4",
|
||||
"version": "1.228.6",
|
||||
"description": "All the latest porn releases in one place",
|
||||
"main": "src/app.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -27,7 +27,7 @@ function initPostgraphile(credentials) {
|
|||
// watchPg: true,
|
||||
disableDefaultMutations: true,
|
||||
dynamicJson: true,
|
||||
graphiql: true,
|
||||
graphiql: config.database.graphiql,
|
||||
enhanceGraphiql: true,
|
||||
allowExplain: () => true,
|
||||
// simpleCollections: 'only',
|
||||
|
|
|
@ -72,6 +72,7 @@ async function initServer() {
|
|||
const store = new KnexSessionStore({ knex });
|
||||
|
||||
app.set('view engine', 'ejs');
|
||||
app.disable('x-powered-by');
|
||||
|
||||
router.use('/media', express.static(config.media.path));
|
||||
router.use(express.static('public'));
|
||||
|
|
Loading…
Reference in New Issue