HolodexNet / Holodex

Holodex frontend source code
https://holodex.net
MIT License
532 stars 92 forks source link
hololive vtuber vue

Holodex

MIT License Discord Chat Deploy to Prod Crowdin Twitter Follow

holodex

Changelog

Reporting a Bug/Feature Request

Setup for Development

Important: the bulk of development is currently happening on the next branch!!! If you would like to participate in Holodex React development, please check out the next branch and PR against it! The contribution/development readme is in /package/react/README.md!

git clone git@github.com:HolodexNet/Holodex.git
npm install
# By default the api is proxied to staging, copy, rename and edit the .env.placeholder to change API_BASE_URL
npm run serve

Building

npm run build
# Analyzing build bundle size
npm run analyze-build

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Check out the Project Board for things being planned

Project Structure

docs    # Changelog, hosted on Github Pages
public  # Static resources
src
├── components              # Vue components
├── locales                 # UI text translations for each languages
├── plugins                 # Vuetify, i18n and other plugin definitions
├── mixins                  # Vue mixins commonly used across components
├── external                # External components we imported into the project for maintenance / updating
├── router                  # Router definitions for path and views
├── store                   # Vuex store modules, each file loosley corresponds to each page.
├── utils                   # Utility declarations
├── views                   # Vue Page defintions
└── App.vue                 # Main entry point, sets up router-view

Roadmap