The Accessibility (A11Y) Project is an Open-source, community-driven effort to make digital accessibility easier.
You can learn about helping this project by reading our Code of Conduct, Contributor documentation, and Content Style Guide. Please familiarize yourself with them before submitting content.
This README
is focused on the technical side of the project. If you are interested in contributing information like Posts or Resources, please refer to our Contributing Guidelines.
The A11Y Project uses Eleventy to manage its content. Eleventy relies on Markdown, Sass, Nunjucks, and JSON to function.
It may be helpful to familiarize yourself with these technologies, depending on what you want to do. For more information, check out our Contributor documentation.
You'll need access to the following programs and technology in order to get the website running on your computer to work on:
git --version
into your command line application. If it is installed it will list the currently installed version (e.g. git version 2.18.0
).node -v
into your command line application. If it is installed it will list the currently installed version (e.g. v16.4.0
). The A11Y Project requires a minimum version of 16.0.0
.Once you have met the prerequisites, follow these steps to install the website on your computer:
git clone https://github.com/a11yproject/a11yproject.com.git
. It will create a version-controlled copy of the website in the directory you entered the command in.cd a11yproject.com
in your command line application.npm install
into your command line application. A list of these modules should be displayed after they are downloaded and installed.After cloning and installing project Node.js modules, you will need to tell Node.js to compile the project and turn it into a website. To do this:
npm start
into your command line application.npm run eleventy-watch & npm run gulp-watch
into your command line application.Your command line application will then display some information about Eleventy, including a line that starts with Local:
. You can copy the URL it points to (it should read something like http://localhost:3000
) and paste it into a browser tab. This will load a local copy of the website that you can interact with to preview your changes.
You can also use the External
URL to preview the local copy on another device connected to the same network, which helps you check to see how the site looks and functions on things like smartphones. This is done via Browsersync.
Saving project files will make Node.js regenerate the website to reflect the changes you made. Your command line application will display some new messaging to reflect this, including any errors you might accidentally make. Don't worry! Since the site uses version control, you're not in danger of seriously breaking anything. If you fix the error, Node.js should continue to run.
Make sure you edit the files in the src/
subdirectory. Any edits made in the dist
subdirectory will be overwritten by the next change to any file in src/
and all your hard work will be lost!
You can tell Node.js to stop running by pressing the Control and C keys at the same time in your command line application, or by closing the command line application window or tab.
If you use Visual Studio Code as your code editor, you can take an introductory tour of the repository via the CodeTour extension.
Please refer to our Troubleshooting documentation for help with issues running the site.