openwrt-firmware-selector/src/config.ts
2021-03-21 18:40:44 +05:30

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;