mirror of
https://github.com/LD-Reborn/Berufsschule_HAM.git
synced 2025-12-20 15:01:56 +00:00
26 lines
394 B
Markdown
26 lines
394 B
Markdown
# Administration
|
|
|
|
## Configuration
|
|
### Environments
|
|
(TODO: Explanation regarding appsettings.XYZ.json here)
|
|
|
|
### Barcode type
|
|
The barcode type can be set in the appsettings like this:
|
|
```json
|
|
{
|
|
//[...]
|
|
"BarcodeType": "code128",
|
|
//[...]
|
|
}
|
|
```
|
|
The following barcodes are supported:
|
|
- CODE128C
|
|
- EAN13
|
|
- EAN8
|
|
- UPC
|
|
- ITF14
|
|
- ITF
|
|
|
|
Make sure to type in the barcode format in lowercase.
|
|
|