Quick Start with Miku Miku Beam
mainTo get Miku Miku Beam running quickly, clone the repository, install dependencies, create the required data files, and build/run the server.
Prerequisites
- Go (v1.21 or above)
- Node.js (v18 or above)
- npm
Steps
- Clone and setup
- Install dependencies
- Create required files (
data/proxies.txtanddata/uas.txt) - Build and run
- Access the web interface at
http://localhost:3000
# 1. Clone and setup
git clone https://github.com/sammwyy/mikumikubeam.git
cd mikumikubeam
# 2. Install dependencies
make prepare
# 3. Create required files
echo "http://proxy1:8080" > data/proxies.txt
echo "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" > data/uas.txt
# 4. Build and run
make all && make run-server
# 5. Open http://localhost:3000 in your browser