Add .gitignore
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
node_modules
|
||||
.idea
|
||||
*.png
|
||||
+4
-1
@@ -1,9 +1,12 @@
|
||||
const {startBookWithNumbers, scheduleBookWithNumbers} = require('./src/appointment')
|
||||
const schedule = require("node-schedule");
|
||||
const {homedir} = require("os");
|
||||
homeDir = homedir()
|
||||
|
||||
//faubourg, random
|
||||
schedule.scheduleJob('30 10 * * *', function () {
|
||||
console.log("start startBookWithNumbers")
|
||||
startBookWithNumbers(1, 6000, "random", "/Users/panlei/Desktop/03_05_to_test.xlsx", true, false).then((r) => {
|
||||
startBookWithNumbers(1, 6000, "random", homedir() + "/Desktop/contact_list_2024-09-11.xlsx", true, false).then((r) => {
|
||||
console.log(r)
|
||||
})
|
||||
})
|
||||
@@ -5,8 +5,8 @@ const axios = require("axios");
|
||||
const {v4: uuidv4} = require('uuid');
|
||||
const OCRResult = require("../models/OCRResult");
|
||||
|
||||
// const DEEPLEARNING_CAPTCHA_HOST = "http://appointment.lpaconsulting.fr:9000"
|
||||
const DEEPLEARNING_CAPTCHA_HOST = "http://192.168.0.36:9000"
|
||||
const DEEPLEARNING_CAPTCHA_HOST = "http://appointment.lpaconsulting.fr:9000"
|
||||
// const DEEPLEARNING_CAPTCHA_HOST = "http://192.168.0.36:9000"
|
||||
|
||||
function delay(delayInMs) {
|
||||
return new Promise(resolve => {
|
||||
|
||||
Reference in New Issue
Block a user