/japanre

Web game. Everyday, guess a prefecture among the 47 prefectures of Japan. Adapted from Worldle, which is itself inspired by Wordle.

Primary LanguageTypeScriptMIT LicenseMIT

JAPANRE

Play this geographical Japan wordle here: https://japanre.adriencarpentier.com!

Heavily adapted from Worldle by teuteuf, which was heavily inspired by Wordle by Josh Wardle.

To test

bun install -g serve
serve -s build

Then test on http://server_ip:3000.

To deploy on production with Nginx

Follow instructions on https://create-react-app.dev/docs/deployment/

bun run build

Example nginx vhost:

server {
    server_name japanre.adriencarpentier.com;
    root /var/www/japanre/build;
    index index.html;
    location / {
        try_files $uri /index.html;
        #try_files $uri $uri/ =404;
    }
}

Resources used