A simple web application for checking several HTML tags important for SEO
# Clone repo
git clone [email protected]:shortykevich/PageAnalyzer.git && cd PageAnalyzer
# Install dependencies:
make install
# Create .env file and define SECRET_KEY and DATABASE_URL. Example:
echo "SECRET_KEY=your-very-secret-key" >> .env
# To create sqlite file in project directory for testing purposes:
echo "DATABASE_URL=sqlite:///./test.db"
# Or if you have postgres URL:
echo "DATABASE_URL=postgresql://username:password@host:port/database_name" >> .env
Initialize the db with:
make build
and start with:
make start
To start Flask Development server:
make dev
Checkout demo! It may take up to 2 minutes for project to start.