https://github.com/second-state/vtb_front
https://github.com/second-state/vtb_front
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/second-state/vtb_front
- Owner: second-state
- Created: 2025-01-13T17:29:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-22T04:30:16.000Z (about 1 year ago)
- Last Synced: 2025-05-07T18:57:35.246Z (about 1 year ago)
- Language: Rust
- Size: 1.88 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Download demo model
```bash
cd front/public
mkdir models && cd models
wget https://cubism.live2d.com/sample-data/bin/tororohijiki/tororo_hijiki.zip
unzip tororo_hijiki.zip
```
# Dev Start
```bash
cd front
npm install
npm run dev
```
```bash
# open another terminal
cargo run
```
open http://127.0.0.1:5173 on web-browser
# Build and run
```bash
cd front
npm run build
cd .. # go back root path
cargo build --release
export RUST_LOG=info
./target/release/vtb_front -d front/dist
```