mirror of
https://git.netzspielplatz.de/docker-multiarch/openwrt-firmware-selector.git
synced 2025-11-09 01:49:35 +00:00
24 lines
645 B
TypeScript
24 lines
645 B
TypeScript
/* exported config */
|
|
|
|
const config = {
|
|
// Show help text for images
|
|
show_help: true,
|
|
|
|
// Path to overview.json file or URL to the ASU API
|
|
versions: { '19.07.7': 'data/19.07.7', SNAPSHOT: 'data/SNAPSHOT' },
|
|
|
|
// Pre-selected version (optional)
|
|
default_version: '19.07.7',
|
|
|
|
// Image download URL (optional)
|
|
image_url: 'https://downloads.openwrt.org/releases/{version}/targets/{target}',
|
|
|
|
// Info link URL (optional)
|
|
info_url: 'https://openwrt.org/start?do=search&id=toh&q={title}',
|
|
|
|
// Build custom images (optional)
|
|
// See https://github.com/aparcar/asu
|
|
asu_url: 'https://chef.libremesh.org',
|
|
};
|
|
|
|
export default config;
|