Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 1.01 KB

README.md

File metadata and controls

36 lines (25 loc) · 1.01 KB

highres-miku

Simple Python and React app for scraping and displaying slightly more high-res thumbnails for Piapro's Snow Miku contest.

Tested to run on Dokku-host, should also work in Heroku.

Check it out at https://snowmiku.net!

Licenced under MIT licence, see LICENCE file.

Development

Requirements

Backend

  1. Install dependencies
  • $ pipenv install
  1. Start virtualenv
  • $ pipenv shell
  1. Run backend
  • $ sh run_devserver.sh
  1. You now have the API server running in port 3939. Development server automatically reloads on Python file changes.

Frontend

  1. Install dependecies
  • $ yarn
  1. Start Parcel packager
  • $ yarn start-dev
  1. You now have front-end served at port 3000. Parcel proxies requests to the API server. Parcel offers hot module reload.