If you ever use the elevator, subtitles to watch that cat video during a boring meeting, or tabbed through a form, you have used an accessibility feature. As a community we understand that accessibility is necessary but when it comes to implementation, we often fall short.
This app is the base for a hands on workshop for those interested in learning how to get started.
https://m2d2co.github.io/accessibility-basics-vue/
latest
has the accessible version of the application.start
has the starting point for the workshop. This branch includes errors that will be tested for, explained, and fixed during the workshop.
$ npm install
: project setup$ npm start
: compile and hot reload for dev (serves the application onlocalhost:8080
)
$ npm run build
: compile and minify for production- production deploy is configured to deploy to github pages for this repository
$ npm run lint
: lints files$ ./deploy.sh
: builds and commits to gh-pages which deploys to github- deploys to: https://m2d2co.github.io/accessibility-basics-vue/
- if you get a
no such file or directory
error, you may have to make it an executable:$ chmod +x deploy.sh
Note: A modern browser is necessary to run this project