1.5 KiB
Math website
to access list of all users in the database go to http://127.0.0.1:5000/users
Live website with the latest commit as of 28/07/2026 12:11pm https://math.ralphie.xyz(NOT RUNNING ATM)
working on email system for reseting password but isnt working at the moment and can break the website if uncommented and ran
only works on device local not local network or with a public ip and port forwarding working to fix this
at the moment there is no demo kinda build to test it out but that will be added in the future with the official website demo will just be a less features way to check the website out
Made
singup system, signin system, hiding bivariate page if not signed in, database to store accounts
Not Made
information, quizzes, formulas, good looking pages reseting password guides
Guide to running
git clone https://git.ralphie.xyz/Jordan/math-website.git
cd math-website
python3 ./app.py
Then go to http://localhost:5000
If you want to run this on a vps or server at home this is how to do it (only being used on a ubuntu server so might not work on other distros like debian)
git clone https://git.ralphie.xyz/Jordan/math-website.git
cd math-website
sudo apt install python3.14-venv
python3 -m venv venv
source venv/bin/activate
pip install flask flask_mail flask_sqlalchemy werkzeug gunicorn
gunicorn --workers 3 --bind 0.0.0.0:8000 app:app
Then access it at you_vps_or_server_ip:8000