-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecosystem.config.js
49 lines (47 loc) · 1.93 KB
/
ecosystem.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/**
* NodeJS-PasteServer | Copyright © 2021 | vironlab.eu
* ___ _______ ______ ______
* __ | / /___(_)______________ _______ ___ / ______ ____ /_
* __ | / / __ / __ ___/_ __ \__ __ \__ / _ __ `/__ __ \
* __ |/ / _ / _ / / /_/ /_ / / /_ /___/ /_/ / _ /_/ /
* _____/ /_/ /_/ \____/ /_/ /_/ /_____/\__,_/ /_.___/
* ____ _______ _______ _ ___ ____ __ __ _____ _ _ _____
* | _ \| ____\ \ / / ____| | / _ \| _ \| \/ | ____| \ | |_ _|
* | | | | _| \ \ / /| _| | | | | | | |_) | |\/| | _| | \| | | |
* | |_| | |___ \ V / | |___| |__| |_| | __/| | | | |___| |\ | | |
* |____/|_____| \_/ |_____|_____\___/|_| |_| |_|_____|_| \_| |_|
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Contact:
*
* Discordserver: https://discord.gg/wvcX92VyEH
* Website: https://vironlab.eu/
* Mail: contact@vironlab.eu
*
*/
'use strict'; // https://www.w3schools.com/js/js_strict.asp
module.exports = {
apps: [
{
name: 'PasteServer',
script: 'server.js',
instances: 1,
exec_mode: 'fork',
watch: true,
autorestart: true,
ignore_watch: ['./node_modules/*', './storage/*'],
},
],
};