ci: remove superfluous before_script
[web/firmware-selector-openwrt-org.git] / README.md
index 3560c16f8adb1ce89901d060ffd95458642b6fc2..7ea9464b86dd10fce0a2943407e2de3ffae4d8fc 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,35 +1,53 @@
 # Yet Another Firmware Selector
 
 A simple OpenWrt firmware selector using autocompletion. Uses plain
-HTML/CSS/JavaScript. Checkout the [Demo](https://mwarning.github.io/yet_another_firmware_selector/).
+HTML/CSS/JavaScript. Checkout the [Demo](https://mwarning.github.io/yet-another-firmware-selector/www/).
 
 ![image](misc/screenshot.png)
 
 
-## Run
+## Quick Run
 
-* Download repository and change directory
+* Download the sources and change the working directory
 * Start webserver (e.g. `python3 -m http.server`)
-* Go to `http://localhost:8000` in your web browser
+* Go to `http://localhost:8000/www/` in your web browser
 
-Configure with [config.js](config.js).
+Configure with [config.js](www/config.js).
 
 ## Attended Sysupgrade Support
 
 This firmware selector can speak to a [ASU server](https://github.com/aparcar/asu) to build custom images. To enable the feature, the `asu_url` option in the config.js needs to be set.
 
-## Update Database
+## Installation
 
-The `names-<version>.json` files are based on JSON files created by OpenWrt
-(master): `Global build settings  ---> [*] Create JSON info files per build
-image`.
+Place the `www/` folder somewhere web accessible. Then use the `collect.py` script to update the `config.json` file:
 
-A [Python script](misc/collect.py) is included to merge the JSON files:
-`./collect.py bin/ --url
-'https://downloads.openwrt.org/releases/{version}/targets/{target}' >
-names-test.json`.
+```
+./misc/collect.py scan "https://firmware.example.com/{version}/targets/{target}" ~/openwrt/bin/ www/
+```
 
-For the OpenWrt 18.06 and 19.07 releases, you need to patch OpenWrt to output JSON files for collect.py (commit [openwrt/openwrt@881ed09](https://github.com/openwrt/openwrt/commit/881ed09ee6e23f6c224184bb7493253c4624fb9f)).
+This should do it.
+
+The https link is used to access image files. There are different variables available:
+
+* `{version}`: Version in the profiles.json files. E.g. `19.07.4` or `SNAPSHOT`.
+* `{target}`: Main- and sub target, E.g. `ath79/generic`.
+* `{base}`: Distinct path to the targets directory. E.g. `releases/18.06.8/targets/`
+
+The `collect.py` script searches the `~/openwrt/bin/` directory for `profile.json` files. These are merged into `overview.json` files (one per release). The `overview.json` files are then placed into `www/data/` and `www/config.js` is updated.
+
+To let OpenWrt create `profile.json` files, enable the build setting (`make menuconfig`):
+`Global build settings  ---> [*] Create JSON info files per build image`.
+
+If the option is not available (OpenWrt 18.06 or 19.07.3), apply commit [openwrt/openwrt@881ed09](https://github.com/openwrt/openwrt/commit/881ed09ee6e23f6c224184bb7493253c4624fb9f).
+
+### Scrape
+
+If you want to scrape the OpenWrt download website and update the `config.js`:
+
+```
+./misc/collect.py scrape https://downloads.openwrt.org www/
+```
 
 ## Similar Projects