Repository for the Random Hero Picker for Overwatch. This website allows Overwatch players to get a random suggestion of which hero to play based on a selection of heroes made by the player.
- Website: https://owheropicker.com
If you find any bug or have a feature request, please post it on the issue section of this repository.
Any feedback that is not a bug report or a feature request, please send to [email protected]. You can also join the discord server.
Use these instructions to build the site from the source code and having it run on your own machine or server.
- Clone the repo
cd
into the repo foldernpm install
to install the dependencies- You can now run the site using
npm
directly or generate static files that can be served by a webserver:npm run serve
to serve the site on localhostnpm run build --prod
to generate the site static files. This command will put all the files under adist
directory. These files should then be put behind a webserver to serve the site.