# 万能导航 **Repository Path**: bug-chen/universal-navigation ## Basic Information - **Project Name**: 万能导航 - **Description**: 一款基于vue的浏览器首页:项目地址http://123.60.87.14/#/ - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2022-09-30 - **Last Updated**: 2023-01-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 万能导航 > A simple navigation site project 项目雏形(持续更新中):http://123.60.87.14/#/ ## Build Setup ``` bash # install dependencies npm install # serve with hot reload at localhost:8080 npm run dev # build for production with minification npm run build # build for production and view the bundle analyzer report npm run build --report ``` For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader). ## Build docker image ```bash # build a simple docker image from nginx docker build -t universal-navigation . # run a container docker run \ --name hao \ -p 80:80 \ -v ./hao.conf:/etc/nginx/conf.d/default.conf:ro \ -d --restart=always \ hao:latest # run by docker-compose echo "HAO_IMAGE=hao:latest" > .env docker-compose up -d ```