A music library export tool.
Check it out at libx.stream
This project bundles the React Vite project with the Flask backend server in order to prevent having to run two servers for the frontend and the backend.
Use watch
to reload yarn
assets on an interval.
cd www/libx && watch -n 5 yarn build
Run the Flask development server - which will serve the frontend.
ENV=development FLASK_APP=libx/app.py FLASK_RUN_HOST=127.0.0.1 FLASK_RUN_PORT=5000 flask run --reload