-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsrc.txt
More file actions
92 lines (92 loc) · 2.67 KB
/
src.txt
File metadata and controls
92 lines (92 loc) · 2.67 KB
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
wapro-network-mock
├── .env.example
├── .gitignore
├── Makefile
├── README.md
├── docker-compose.yml
├── docs
│ ├── API.md
│ ├── SQL_Schema.md
│ ├── Testing.md
│ ├── Troubleshooting.md
│ └── ZEBRA_Commands.md
├── monitoring
│ ├── docker-compose.monitoring.yml
│ ├── grafana
│ │ ├── dashboards
│ │ │ ├── database_metrics.json
│ │ │ ├── network_overview.json
│ │ │ └── printer_status.json
│ │ └── datasources
│ │ └── prometheus.yaml
│ └── prometheus
│ ├── alerts.yml
│ └── prometheus.yml
├── mssql-wapromag
│ ├── Dockerfile
│ ├── init.sql
│ ├── backup
│ └── config
├── rpi-server
│ ├── .env
│ ├── Dockerfile
│ ├── package.json
│ ├── server.js
│ ├── logs
│ ├── public
│ │ ├── css
│ │ │ └── style.css
│ │ ├── index.html
│ │ └── js
│ │ └── app.js
│ ├── routes
│ │ ├── diagnosticRoutes.js
│ │ ├── healthRoutes.js
│ │ ├── sqlRoutes.js
│ │ └── zebraRoutes.js
│ ├── services
│ │ ├── diagnosticService.js
│ │ ├── healthService.js
│ │ ├── sqlService.js
│ │ └── zebraService.js
│ └── tests
│ ├── integration.test.js
│ ├── sql.test.js
│ └── zebra.test.js
├── scripts
│ ├── backup-db.sh
│ ├── restore-db.sh
│ ├── setup.sh
│ ├── start.sh
│ ├── stop.sh
│ └── test-all.sh
├── test-runner
│ ├── Dockerfile
│ ├── requirements.txt
│ ├── test_suite.py
│ ├── config
│ │ └── test_config.yaml
│ ├── reports
│ └── tests
│ ├── test_integration.py
│ ├── test_rpi_sql.py
│ ├── test_rpi_zebra.py
│ └── test_zebra_connectivity.py
├── zebra-printer-1
│ ├── Dockerfile
│ ├── requirements.txt
│ ├── zebra_mock.py
│ ├── config
│ │ └── printer_config.json
│ ├── logs
│ └── templates
│ └── interface.html
└── zebra-printer-2
├── Dockerfile
├── requirements.txt
├── zebra_mock.py
├── config
│ └── printer_config.json
├── logs
└── templates
└── interface.html