The DEI Badging initiative is an award system whereby open-source events earn badges and enhance their events to be more inclusive using the feedback they get from reviewers. The DEI badges help nurture a system that promotes leadership, self-reflection, and self-improvement on issues critical to building the Internet as a social good.
- Establish an environment where events can engage in the badging program
- Aligning the badging program with best practices, guidelines, and recommendations from Diversity & Inclusion efforts on the CHAOSS project
- Connect with existing badging standards of IMS Global including
- Building an open, peer-review system for the D&I Badging Program To learn more about DEI Badging, please check out the CHAOSS Community Handbook.
This website was created to help event organizers easily register their events to get badged. This evnt badge focuses on the experience of the event attendees(everyone present at the event), improving DEI in open-source events.
To contribute to this project please follow the guidelines found in our CONTRIBUTION.md! file. This project is open for contribution to all from newbie to expert regardless if you're working on your 1000th contribution to open source or your 1st.
The repository has two main branches,
main
: For production. this is currently running on this instancestaging
: The development branch that is used for all test purposes and currently running on this instance.
To get your local instance up and running;
Ensure that you have node
and npm
installed on your local machine. if not, check out this digitalocean robust tutorial depending on what operating system you are using.
- Fork and Clone this repository
git clone https://github.com/BADGING/badging-website.git
Make sure to replace BADGING
with your GitHub username
2. Move into the project folder
cd badging-website
- Run the code below to install additional dependencies
npm install
- Once all packages have been installed run
npm run dev
Your app should be running on http://localhost:5050
Incase you want to build the project before pushing it.
- Create an
.env
file in the website folder and and supply a port number
# supply a port number
PORT=3000
- Build the project
npm run build
- Start the local server
npm start
Your built app will run on the port you supplied in the env file and for this case, http://localhost:3000