mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-25 18:20:31 -06:00
Remove references to Electron
This commit is contained in:
parent
82221ac920
commit
5683534893
@ -18,6 +18,3 @@ storage:
|
||||
logs: 'logs/'
|
||||
thumbnails: 'thumbnails/'
|
||||
torrents: 'torrents/'
|
||||
|
||||
electron:
|
||||
debug: false
|
||||
|
@ -7,6 +7,3 @@ webserver:
|
||||
database:
|
||||
host: 'localhost'
|
||||
port: 27017
|
||||
|
||||
electron:
|
||||
debug: false
|
||||
|
@ -17,8 +17,8 @@ function checkConfig () {
|
||||
const required = [ 'listen.port',
|
||||
'webserver.https', 'webserver.host', 'webserver.port',
|
||||
'database.host', 'database.port', 'database.suffix',
|
||||
'storage.certs', 'storage.uploads', 'storage.logs', 'storage.thumbnails',
|
||||
'electron.debug' ]
|
||||
'storage.certs', 'storage.uploads', 'storage.logs', 'storage.thumbnails'
|
||||
]
|
||||
const miss = []
|
||||
|
||||
for (const key of required) {
|
||||
|
@ -35,9 +35,6 @@ const CONFIG = {
|
||||
HOST: config.get('database.host'),
|
||||
PORT: config.get('database.port')
|
||||
},
|
||||
ELECTRON: {
|
||||
DEBUG: config.get('electron.debug')
|
||||
},
|
||||
STORAGE: {
|
||||
CERT_DIR: path.join(__dirname, '..', '..', config.get('storage.certs')),
|
||||
LOG_DIR: path.join(__dirname, '..', '..', config.get('storage.logs')),
|
||||
@ -138,10 +135,6 @@ const USER_ROLES = {
|
||||
USER: 'user'
|
||||
}
|
||||
|
||||
// Seeds in parallel we send to electron when "seed all"
|
||||
// Once a video is in seeding state we seed another video etc
|
||||
const SEEDS_IN_PARALLEL = 3
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
// Special constants for a test instance
|
||||
@ -169,7 +162,6 @@ module.exports = {
|
||||
REQUESTS_LIMIT,
|
||||
RETRY_REQUESTS,
|
||||
SEARCHABLE_COLUMNS,
|
||||
SEEDS_IN_PARALLEL,
|
||||
SORTABLE_COLUMNS,
|
||||
STATIC_PATHS,
|
||||
THUMBNAILS_SIZE,
|
||||
|
Loading…
Reference in New Issue
Block a user