-
Notifications
You must be signed in to change notification settings - Fork 56
/
config.js
25 lines (23 loc) · 1.02 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
var path = require('path');
// https://nodejs.org/api/path.html#path_path_resolve_paths
// var appDir = path.resolve("./package.json");
// const {app} = require('electron');
var ffmpegPath = require('ffmpeg-static-electron').path;
var ffprobePath = require('ffprobe-static-electron').path;
module.exports = {
serverUrl: 'http://localhost:3000/api',
// appName: 'autoEdit 2',
ffmpegPath: ffmpegPath,
ffprobePath: ffprobePath,
links: {
donate: 'https://donorbox.org/c9762eef-0e08-468e-90cb-2d00643697f8?recurring=true',
projectPage: 'http://www.autoedit.io',
mailingList: 'http://eepurl.com/cMzwSX',
twitter: 'https://twitter.com/autoEdit2',
facebook: 'https://www.facebook.com/autoEdit.io/',
email: 'mailto:[email protected]?Subject=autoEdit%202' ,
userManual: 'https://autoedit.gitbook.io/user-manual',
sttSetup: 'https://autoedit.gitbook.io/user-manual/setup-stt-apis',
sttSetupIBM: 'https://autoedit.gitbook.io/user-manual/setup-stt-apis/setup-stt-apis-ibm'
}
};