Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stangirard/seo-audits-toolkit
SEO & Security Audit for Websites. Lighthouse & Security Headers crawler, Sitemap/Keywords/Images Extractor, Summarizer, etc ...
https://github.com/stangirard/seo-audits-toolkit
analysis audits crawler dashboard extractor headers internal-links lighthouse link-extractor python securityheader seo seo-tools serp summarizer
Last synced: 4 days ago
JSON representation
SEO & Security Audit for Websites. Lighthouse & Security Headers crawler, Sitemap/Keywords/Images Extractor, Summarizer, etc ...
- Host: GitHub
- URL: https://github.com/stangirard/seo-audits-toolkit
- Owner: StanGirard
- Created: 2020-05-19T22:56:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-06T11:13:41.000Z (over 1 year ago)
- Last Synced: 2024-10-29T23:54:55.167Z (6 days ago)
- Topics: analysis, audits, crawler, dashboard, extractor, headers, internal-links, lighthouse, link-extractor, python, securityheader, seo, seo-tools, serp, summarizer
- Language: Python
- Homepage:
- Size: 34.4 MB
- Stars: 647
- Watchers: 15
- Forks: 131
- Open Issues: 39
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Open source Audits Toolkit
**OSAT** is a collection of tools created help you in your quest for a better website. All of these tools have been grouped into a single web app.
I've grown tired of SEO agencies making us pay hundreds of euros for simple tools. I decided to develop **OSAT** to help users find issues on their website and increase their SEO for free.
## Why you need it
- It's **free**, easy and open source.
- It has a growing list of features
- It's easy to install## Features
- **Authentification** - A fully featured authentification system for the front & back
- **RBAC/Organizations** - Create different organizations and give different access to each org to your users.
- **Lighthouse Score** - Run [Lighthouse](https://developers.google.com/web/tools/lighthouse) Audits and keep track of your scores
- **SERP Rank** - Get the rank of your website on google for specific queries
- **Keywords Finder** - Find all the keywords of an article.
- **Extract Headers/Links/Images** - Easily extract all the links on your website and their status codes, the headers of a page and all the images.
- **Sitemap Extractor** - Extract all the urls of a website from its sitemap
- **Summarizer** - Summarize any text from any length. Awesome for excerpt !
- **Security Audit** - Audit Headers, Redirect, etc to make sure you website is secure.## Demo
Go to [demo.primates.dev](https://demo.primates.dev)
**Login**: demo
**Password**: demodemoAdmin part is [api.primates.dev/admin](https://api.primates.dev/admin)
## Installation
```Bash
git clone https://github.com/StanGirard/seo-audits-toolkit
cd seo-audits-toolkit
docker-compose pull ## docker-compose build if you want to build it on your own
docker-compose --env-file .env-example up -d
```Init the project
```Bash
docker exec -it osat-server python manage.py flush
docker exec -it osat-server python manage.py loaddata init_data.json
```## Dashboard
You can access the dashboard by going to [localhost:3000](http://localhost:3000)
**Login**: admin
**Password**: admin
## ConfigIf needed create a `.env` file with information that you would like to change
## Configuration
### Create organization
You need to go to `Org -> Organization` and create a new organization. You can create as many as you want. Organization are used in order to implement RBAC in the project and only display information about an organization to users of this organization. Here is a quicklinkg to access it [http://localhost:8000/admin/org/website/](http://localhost:8000/admin/org/website/)
### Add user to organization
Once your organization is created. You need to add your users to this organization.
Go to `Organizations -> Organizations Users` and add your users to the organization you want. [http://localhost:8000/admin/organizations/organizationuser/](http://localhost:8000/admin/organizations/organizationuser/)## Useful Links
- **Webapp** [http://localhost:3000](http://localhost:3000)
- **Admin Dashboard** [http://localhost:8000/admin](http://localhost:8000/admin)
- **Swagger like interface** [http://localhost:8000](http://localhost:8000)## Contributions
Please feel free to add any contribution.
If you've been working on a script that could be integrated in this app. Please feel free to do it. Don't hesitate to open issues to ask questions. I've tried to document the code as much as I could to ease the integration### Backend
You can just add a django module and I'll take care of intregrating it in the front.
### Frontend
I've used React Admin to build the front-end. If you want to help me improve the UI or add new functionnalites. Please feel free to contribute.## Disclaimers
I'm not a python nor a frontend developer.