first commit

This commit is contained in:
Warunee Tamkoo 2023-09-06 14:51:44 +07:00
commit eb2f504652
32490 changed files with 5731109 additions and 0 deletions

25
node_modules/wait-on/exampleConfig.js generated vendored Normal file
View file

@ -0,0 +1,25 @@
module.exports = {
// specify additional options here, especially http(s)
// see https://nodejs.org/api/tls.html#tls_tls_connect_options_callback for specifics
ca: [
/* strings or binaries */
],
cert: [
/* strings or binaries */
],
key: [
/* strings or binaries */
],
passphrase: 'yourpassphrase',
auth: {
user: 'yourusername',
pass: 'yourpassword'
},
strictSSL: false,
followRedirect: false,
headers: {
'x-custom': 'headers'
},
// optional default resources if not specified in command args
resources: ['http://foo/bar', 'http://cat/dog']
};