
JavaScript framework for Games, 3D
Phaser, https://github.com/phaserjs/phaser
Phaser is a fun, free and fast 2D game framework for making HTML5 games for desktop and mobile web browsers, supporting Canvas and WebGL rendering.
ThreeJS, https://threejs.org/
Babylon.js, https://www.babylonjs.com/, https://github.com/BabylonJS/Babylon.js
Crafty, https://github.com/craftyjs/Crafty
MelonJS, https://melonjs.org/

Configuring Ollama
IP - bound to 0.0.0.0 so that it serves external requests.
Windows -
Set up an environment variable, OLLAMA_HOST, value 0.0.0.0 or 0.0.0.0:(port) - if you'd like to use different port number. Then restart ollama
Linux -
sudo vi /etc/systemd/system/ollama.service
In [Service] section, add:
Environment="OLLAMA_HOST=0.0.0.0"
$ sudo systemctl daemon-reload
$ sudo systemctl restart ollama
Keep model in memory longer
Environment variable, OLLAMA_KEEP_ALIVE to 10 (10 minutes, default is 5 minutes)
Model file location
Windows - %HOMEPATH%\.ollama\models
Linux - /usr/share/ollama/.ollama/models
Logs
Windows - %LOCALAPPDATA%\Ollama
Linux -
sudo journalctl -u ollama.service > ollama_logs.txt
journalctl -e -u ollama