-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbin_development.txt
126 lines (109 loc) · 3.4 KB
/
bin_development.txt
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#!/usr/bin/env node
var app = require('../app');
var debug = require('debug')('attendance:server');
var https = require('https');
var fs = require('fs');
var path = require('path');
var db = require('../config/db');
const PaymentPlan = require('../models/plan');
const EmailTemplate = require('../models/emailTemplate'); // Adjust the path accordingly
require("dotenv").config();
const defaultPaymentPlan = [
{
planId: process.env.STRIPE_PRICE_ID_45,
planPrice: 45,
planType: '1 month',
},
{
planId: process.env.STRIPE_PRICE_ID_30,
planPrice: 30,
planType: '1 month',
},
];
const createDefaultPaymentPlan = async () => {
try {
const planPromises = defaultPaymentPlan.map(async (plan) => {
const existingPlan = await PaymentPlan.findOne({ where: { planId: plan.planId } });
if (!existingPlan) {
await PaymentPlan.create(plan);
console.log(`Payment plan ${plan.planId} created successfully.`);
} else {
console.log(`Payment plan ${plan.planId} already exists.`);
}
});
await Promise.all(planPromises);
console.log('Default payment plans processed successfully.');
} catch (error) {
console.error('Error creating default payment plans:', error);
}
};
const defaultEmailTemplates = require('./defaultTemplates'); // Ensure correct relative path
const createDefaultEmailTemplates = async () => {
try {
const templatePromises = defaultEmailTemplates.map(async (template) => {
const existingTemplate = await EmailTemplate.findOne({ where: { name: template.name } });
if (!existingTemplate) {
await EmailTemplate.create(template);
console.log(`Email template ${template.name} created successfully.`);
} else {
console.log(`Email template ${template.name} already exists.`);
}
});
await Promise.all(templatePromises);
console.log("Default email templates processed successfully.");
} catch (error) {
console.error("Error creating default email templates:", error);
}
};
var options = {
key: fs.readFileSync('/etc/ssl/private/_.attendace.app_private_key.key'),
cert: fs.readFileSync('/etc/ssl/certs/attendace.app_ssl_certificate.crt'),
ca: fs.readFileSync('/etc/ssl/certs/attendace1cabundle.crt'),
};
var port = normalizePort(process.env.PORT || '5000');
app.set('port', port);
var server = https.createServer(options, app);
server.listen(port);
server.on('error', onError);
server.on('listening', onListening);
db.sync()
.then(() => {
createDefaultPaymentPlan();
createDefaultEmailTemplates();
})
.catch(err => {
console.error('Error syncing database:', err);
});
function normalizePort(val) {
var port = parseInt(val, 10);
if (isNaN(port)) {
return val; // named pipe
}
if (port >= 0) {
return port; // port number
}
return false;
}
function onError(error) {
if (error.syscall !== 'listen') {
throw error;
}
var bind = typeof port === 'string' ? 'Pipe ' + port : 'Port ' + port;
switch (error.code) {
case 'EACCES':
console.error(bind + ' requires elevated privileges');
process.exit(1);
break;
case 'EADDRINUSE':
console.error(bind + ' is already in use');
process.exit(1);
break;
default:
throw error;
}
}
function onListening() {
var addr = server.address();
var bind = typeof addr === 'string' ? 'pipe ' + addr : 'port ' + addr.port;
debug('Listening on ' + bind);
}