Page analyzer (render.com link)
Provides basic info provided by site to search engine.
- Add sites for check
- Get basic info via check
- Show list of checked or prepared for check sites
- Python >= 3.10
- poetry >= 1.8.2
Firstly you should install latest version of poetry package.
With pip:
pip install poetry
With pipx:
pipx install poetry
Export required ENV variables (url template: postgresql://username[:password]@host[:port]/db_name)
export SECRET_KEY = ...
export DATABASE_URL = ...
Then you should install project dependencies and add tables to DB:
make build
To start app in dev mode:
make dev
To start app for production:
make start