Page analyzer is web app for analyzing websites for SEO suitability
Page analyzer is deployed on Render
Install PostgreSQL locally if needed by this instruction
Start postgresql service:
sudo service posgresql start
Execute this command to create db for this project:
createdb <db name>
Clone repo:
git clone https://github.com/SergeiNaum/Page-analyzer.git
Create database tables:
psql <db name> < database.sql
Create and add local environment variables:
SECRET_KEY = <your secret key>
DATABASE_URL = <your Postgres Connection URL>
Install dependencies:
make install
Launch server with the app:
make start
Go to address http://localhost:8000/ or http://127.0.0.1:8000/