-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
30 lines (27 loc) · 1001 Bytes
/
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
//Variable that stores the config
var config = {};
//Email account on Mockaroo with Schemas
config.username = "[email protected]";
//Password of Mockarooo (Dont panic, you can look at the code, i not stealing your info)
config.password = "Camilo$01";
//Times the code would be executed be aware that this would demand a bit of computer horse power
config.timesExecuted = 5;
//Schemas Links
//Feel free to add as many schemas as you want.
config.schemas= [
//Productos
"https://mockaroo.com/schemas/171946",
"https://mockaroo.com/schemas/171946",
"https://mockaroo.com/schemas/171946",
"https://mockaroo.com/schemas/171946",
//Ventas Producto
"https://mockaroo.com/schemas/171952",
"https://mockaroo.com/schemas/171952",
"https://mockaroo.com/schemas/171952",
"https://mockaroo.com/schemas/171952",
//Sucursales
"https://mockaroo.com/schemas/171953",
"https://mockaroo.com/schemas/171953",
];
//DONT TOUCH THIS :P
module.exports= config;