This is a (soon to be) AI-powered accessibility toolkit for websites. Be able to determine how accessible your website is and receive recommendations on improving it for better equality and accessibility.
To get started with this code:
Clone this repository and cd into it:
git clone https://github.com/hassanShakur/accessibility-toolkit.git
cd accessibility-toolkitChange the directory into the server folder and install the dependencies:
Terminal 1
cd server
npm installAlso, install python dependencies in the same folder:
pip install -r requirements.txtIn a separate terminal, change the directory into the client folder and install the dependencies:
Terminal 2
cd client
npm installTo run the code, you need to start the server and the client. To start the server, run this in Terminal 1:
npm run devTo start the client, run this in Terminal 2:
npm run devIf all goes well, the app should be running at localhost:3000 ✨.
Note: This is a work in progress. More features will be added soon, including a better UI and more accessibility checks.

