/iya

:heart: A Smash-Or-Pass website to recommend you waifus

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

iya

A Smash-Or-Pass website to recommend you waifus

Summary

Warning

Im not going to lie the algorithms are pretty lame (as well as the frontend and a bunch of other stuffs) at the moment so there is a big margin with what can be done and where we are at the moment

TODO

  • way better algorithm
  • indication on where the character is coming from
  • etc...

Installation

Once the repository has been cloned:

With make

make install

Then whenever you feel launching the server:

make

Make a production-ready build

make production

Without make

pip install -r backend/requirements.txt
cd frontend
npm install

Then whenever you feel launching the server:

python3 server.py -l

Make a production-ready build

cd frontend && npm run build
cp -r frontend/build/ backend/
cd backend && gunicorn --bind 0.0.0.0:3033 main:app --timeout 600