audiobookshelf/dev.default.js
Spenser Bushey aa336cfeb4 Add dev.default.js file
Added default dev file. Allows users to customize with existing dev.js, but environment can work out of the box most of the time.
2022-12-10 22:11:28 -08:00

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'
}