From a40c5b3b59aa32851d27bb95a7858289460e0ba9 Mon Sep 17 00:00:00 2001 From: Moritz Warning Date: Tue, 28 Jan 2020 02:49:10 +0100 Subject: [PATCH] move to www folder --- README.md | 2 +- config.js => www/config.js | 0 data.json => www/data.json | 0 i18n.js => www/i18n.js | 0 index.css => www/index.css | 0 index.html => www/index.html | 0 index.js => www/index.js | 0 7 files changed, 1 insertion(+), 1 deletion(-) rename config.js => www/config.js (100%) rename data.json => www/data.json (100%) rename i18n.js => www/i18n.js (100%) rename index.css => www/index.css (100%) rename index.html => www/index.html (100%) rename index.js => www/index.js (100%) diff --git a/README.md b/README.md index a104b35..efe2c1e 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A simple OpenWrt firmware selector using autocompletion. Run: * Download repository. -* Go to project directory. +* Go to the project www directory. * Start webserver (e.g. `python3 -m http.server`) * Go to `http://localhost:8000` diff --git a/config.js b/www/config.js similarity index 100% rename from config.js rename to www/config.js diff --git a/data.json b/www/data.json similarity index 100% rename from data.json rename to www/data.json diff --git a/i18n.js b/www/i18n.js similarity index 100% rename from i18n.js rename to www/i18n.js diff --git a/index.css b/www/index.css similarity index 100% rename from index.css rename to www/index.css diff --git a/index.html b/www/index.html similarity index 100% rename from index.html rename to www/index.html diff --git a/index.js b/www/index.js similarity index 100% rename from index.js rename to www/index.js -- 2.30.2