mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-11-03 19:07:00 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			321 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			321 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Using port 3333 is important when running the client web app separately
 | 
						|
const Path = require('path')
 | 
						|
module.exports.config = {
 | 
						|
  Port: 3333,
 | 
						|
  ConfigPath: Path.resolve('config'),
 | 
						|
  MetadataPath: Path.resolve('metadata'),
 | 
						|
  FFmpegPath: '/usr/bin/ffmpeg',
 | 
						|
  FFProbePath: '/usr/bin/ffprobe',
 | 
						|
  SkipBinariesCheck: false
 | 
						|
}
 |