Personal website built with Flask.
The project could be cloned and ran as follows:
pip install -r requirements.txt
export RECAPTCHA_SITE_KEY=<TOKEN GOES HERE>
export RECAPTCHA_SECRET_KEY=<TOKEN GOES HERE>
export TELEGRAM_BOT_TOKEN=<TOKEN GOES HERE>
python .\src\app.py
* Serving Flask app 'app'
* Debug mode: on WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
* Running on https://127.0.0.1:5050
Press CTRL+C to quit
* Restarting with stat
* Debugger is active!
* Debugger PIN: 902-470-930
3. Prod mode (with gunicorn running in daemon mode - check configuration file to see IP address and port (default 127.0.0.1:5050))
gunicorn -c deployment/gunicorn-conf.py app:app --daemon
cd tests
pytest
==================================================================================================================== test session starts ====================================================================================================================
platform win32 -- Python 3.10.5, pytest-7.1.3, pluggy-1.0.0
rootdir: D:\Personal Projects\portfolio\tests
collected 7 items
test_pages.py ....... [100%]
===================================================================================================================== 7 passed in 2.14s =====================================================================================================================