mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-07-27 03:31:46 +00:00
Added default dev file. Allows users to customize with existing dev.js, but environment can work out of the box most of the time.
11 lines
407 B
JavaScript
11 lines
407 B
JavaScript
// DO NOT MODIFY THIS FILE
|
|
// Copy this file to dev.js to make modifications
|
|
|
|
const Path = require('path')
|
|
module.exports.config = {
|
|
Port: 3333, // Using port 3333 is important when running the client web app separately
|
|
ConfigPath: Path.resolve('config'),
|
|
MetadataPath: Path.resolve('metadata'),
|
|
FFmpegPath: 'ffmpeg', // On Windows, use 'C:\\<path_to_ffmpeg>\\ffmpeg.exe'
|
|
FFProbePath: 'ffprobe'
|
|
}
|