- Dynamic Pages (MyPage)

- Uploading files to the Server FTP.
This commit is contained in:
Paolo Arena
2019-12-27 12:41:39 +01:00
parent 9d0e6136ac
commit e62cc62d88
11 changed files with 343 additions and 64 deletions

View File

@@ -26,6 +26,7 @@ if (process.env.NODE_ENV === 'production') {
replyTo: 'paolo.arena77@gmail.com',
host: 'https://freeplanet.app',
portapp: '0',
dir: '/var/www/www.freeplanet.app',
},
{
idapp: '2',
@@ -35,6 +36,7 @@ if (process.env.NODE_ENV === 'production') {
replyTo: 'info@associazioneshen.it',
host: 'http://associazioneshen.it',
portapp: '0',
dir: '/var/www/associazioneshen.it',
},
{
idapp: '3',
@@ -44,16 +46,28 @@ if (process.env.NODE_ENV === 'production') {
replyTo: '',
host: 'http://brigittemgdumont.com',
portapp: '0',
dir: '',
},
{
idapp: '4',
name: 'Mandala Solidale',
adminemail: 'pao.loarena77@gmail.com',
manageremail: '',
replyTo: '',
host: 'https://mandala.freeplanet.app',
portapp: '0',
dir: '/var/www/mandala.freeplanet.app',
},
{
idapp: '6',
name: 'Mandala per l\'Anima',
adminemail: '',
manageremail: '',
replyTo: '',
host: 'http://mandalaperlanima.eu',
portapp: '0',
}
dir: '',
},
];
} else if (process.env.NODE_ENV === 'test') {
MYAPPS = [
@@ -65,6 +79,7 @@ if (process.env.NODE_ENV === 'production') {
replyTo: 'paolo.arena77@gmail.com',
host: 'https://test.freeplanet.app',
portapp: '0',
dir: '/var/www/www.freeplanet.app',
},
{
idapp: '2',
@@ -74,22 +89,34 @@ if (process.env.NODE_ENV === 'production') {
replyTo: 'info@associazioneshen.it',
host: 'http://test.associazioneshen.it',
portapp: '0',
dir: '/var/www/associazioneshen.it',
},
{
idapp: '3',
name: 'Brigitte MG Dumont',
adminemail: '',
adminemail: 'pao.loarena77@gmail.com',
manageremail: '',
host: 'http://test.brigittemgdumont.com',
portapp: '0',
dir: '',
},
{
idapp: '4',
name: 'Mandala Solidale',
adminemail: '',
manageremail: '',
host: 'https://mandala.freeplanet.app',
portapp: '0',
dir: '/var/www/mandalatest.freeplanet.app',
},
{
idapp: '6',
name: 'Mandala per l\'Anima',
adminemail: '',
manageremail: '',
host: 'http://test.mandalaperlanima.eu',
portapp: '0',
dir: '',
}
];
} else {
@@ -102,6 +129,7 @@ if (process.env.NODE_ENV === 'production') {
replyTo: 'paolo.arena77@gmail.com',
host: 'http://localhost',
portapp: '8080',
dir: '/home/paolo/myproject/freeplanet/dist/spa',
},
{
idapp: '2',
@@ -111,6 +139,7 @@ if (process.env.NODE_ENV === 'production') {
replyTo: 'info@associazioneshen.it',
host: 'http://localhost',
portapp: '8081',
dir: '/home/paolo/myproject/associazioneShen/dist/spa',
},
{
idapp: '3',
@@ -119,15 +148,26 @@ if (process.env.NODE_ENV === 'production') {
manageremail: '',
host: 'http://localhost',
portapp: '8082',
dir: '',
},
{
idapp: '4',
name: 'Mandala Solidale',
adminemail: 'paolo.arena77@gmail.com',
manageremail: '',
host: 'http://localhost',
portapp: '8084',
dir: '',
},
{
idapp: '6',
name: 'Mandala per l\'Anima',
adminemail: 'paolo.arena77@gmail.com',
manageremail: '',
host: 'http://localhost',
portapp: '8083',
}
dir: '',
},
];
}