Test your accessibility knowledge in a variety of question-and-answer formats:
- Flash Cards
- Flash Cards with Typing
- Multiple Choice
Copy the contents of .env.example into a file called .env and fill in the missing values. The example file should have instructions on where to find those values.
This project requires Node.js and npm (included with Node.js) to build the site and run it in local development. The LTS (Long Term Support) version is recommended for most cases.
Here are the main commands you'll need to run to get the project up and running.
# install dependencies
npm install
# run the site in development mode
npm start
# build the site for production
npm run build
# lint your code for possible issues
npm run lint
# run unit tests (by default does nothing)
npm run test
# update dependencies to their latest versions
npm run update-deps