Page Analyzer is a website that analyzes the specified pages for SEO suitability.
git clone [email protected]:Alexey-Shepelev/python-project-83.git
# Macos
brew install postgresql
# Ubuntu, Windows
sudo apt install postgresql
whoami
{yourusername}
sudo -u postgres createuser --createdb {yourusername}
createdb {yourdb}
cd python-project-83
psql {yourdb} < database.sql
DATABASE_URL = postgresql://{yourusername}:{password}@{host}:{port}/{yourdb}
SECRET_KEY = '{your secret key}'
make install
make dev
make start


