NekoBox
📫 基于 Go + Vue 开发的轻量匿名提问箱,极简界面,开箱即用 / Lightweight anonymous question box built with Go & Vue, minimal UI, ready to use…
Go★ 294⑂ 33 forksMITupdated 1 month ago
README.mdfork it — it’s yours
NekoBox
匿名提问箱 / Anonymous Question Box
Deployment
Docker Deployment
- Create a Configuration File
Create a configuration file app.ini based on the template conf/app.sample.ini. Adjust the settings as needed by
referring to the comments in the file.
- Start the Container
# Pull the latest image docker pull ghcr.io/wuhan005/nekobox:master # Start the container (listen on port 80 and mount the configuration file) docker run -dt --name NekoBox -p 80:80 -v $(pwd)/app.ini:/app/conf/app.ini ghcr.io/wuhan005/nekobox:master
Build from Source
- Requirements
- Compile the Source Code
# Clone the source code git clone https://github.com/wuhan005/NekoBox.git # Enter the project directory cd NekoBox # Build the binary for the current system and architecture go build -v -ldflags "-w -s -extldflags '-static'" -o NekoBox ./cmd/ # Build the binary for Linux, AMD64 architecture GOOS=linux GOARCH=amd64 go build -v -ldflags "-w -s -extldflags '-static'" -o NekoBox ./cmd/
- Edit the Configuration File
Create a configuration file based on the template conf/app.sample.ini. Adjust the settings as needed by referring to
the comments in the file.
cp conf/app.sample.ini conf/app.ini
- Run
./NekoBox web
License
MIT License
more like this
YiMao
YiMao · 云海求片助手 — 双核心 Telegram 影视求片机器人。订阅模式:TMDB 智能搜索一键订阅 / 趣味求片模式:AI 生成五层地狱闯关,通关解锁优先求片。深度集成 MoviePilot + Emby/Jellyfin。…
Go★ 52