Code Sydney Website
About this site
This is Code.Sydney's new website which everyone can contribute to, regardless of skill level. This is perfect for beginners who want to get exposed to working in a collaborative development environment.
Tech used
This is built on React.js and is deployed on Vercel
How do I contribute?
- Join the #project_codesydneywebsite Discord channel
- We have open issues that can be worked on in the Issues tab.
- You can see how these issues are progressing on our Kanban board.
- Visit our Code.Sydney Playbook here for a full guide
Setting up your machine for local development
Forking and Creating Your Branch
- How to fork this repository (https://github.com/firstcontributions/first-contributions)
- Copy code url from your forked version of project
- Avoid cloning directly from codesydney repo
- CD into directory on cmd terminal where you would like to store project files
- Finally enter following command to clone repo
git clone [url]
Installing the Project
- If you are not using Node.js v14 install NVM by following (https://www.freecodecamp.org/news/node-version-manager-nvm-install-guide/)
- Make sure you are in codesydneywebsite project directory on your cmd terminal then type in folowing command:-
- Install the Node v14 using NVM with
nvm install 14
.
- Change to Node v14 using NVM with
nvm use 14
.
- Install the project dependencies with
npm i
.
Running the Project
- Change to Node v14 using NVM with
nvm use 14
.
- Run the Project with
npm start
.
- Access the site using your browser of choice via http://localhost:3000/
Happy coding!