├── Dockerfile ├── Dockerfile.md ├── LICENSE ├── OneClick.sh ├── README.md ├── data ├── bookmarks.json └── config.json ├── docker-compose.yml ├── main.go └── templates ├── admin_dashboard.html ├── admin_login.html └── index.html /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecouus/E-Nav/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecouus/E-Nav/HEAD/Dockerfile.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecouus/E-Nav/HEAD/LICENSE -------------------------------------------------------------------------------- /OneClick.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecouus/E-Nav/HEAD/OneClick.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecouus/E-Nav/HEAD/README.md -------------------------------------------------------------------------------- /data/bookmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecouus/E-Nav/HEAD/data/bookmarks.json -------------------------------------------------------------------------------- /data/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecouus/E-Nav/HEAD/data/config.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecouus/E-Nav/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecouus/E-Nav/HEAD/main.go -------------------------------------------------------------------------------- /templates/admin_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecouus/E-Nav/HEAD/templates/admin_dashboard.html -------------------------------------------------------------------------------- /templates/admin_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecouus/E-Nav/HEAD/templates/admin_login.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecouus/E-Nav/HEAD/templates/index.html --------------------------------------------------------------------------------