https://github.com/codeskills-dev/bootcamp-starter
πWelcome to Codeskills. This starter kit is your launchpad into the world of programming. Whether you're a beginner or just looking to sharpen your skills, our curated resources and project templates will set you on the path to coding mastery. Join our vibrant community, learn, and code with confidence. Start your journey today! π»
https://github.com/codeskills-dev/bootcamp-starter
100daysofcode beginner-friendly codeskills web-development
Last synced: 2 months ago
JSON representation
πWelcome to Codeskills. This starter kit is your launchpad into the world of programming. Whether you're a beginner or just looking to sharpen your skills, our curated resources and project templates will set you on the path to coding mastery. Join our vibrant community, learn, and code with confidence. Start your journey today! π»
- Host: GitHub
- URL: https://github.com/codeskills-dev/bootcamp-starter
- Owner: codeskills-dev
- Created: 2023-09-16T08:13:01.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-25T09:09:48.000Z (over 1 year ago)
- Last Synced: 2025-01-20T19:15:09.617Z (4 months ago)
- Topics: 100daysofcode, beginner-friendly, codeskills, web-development
- Homepage: https://codeskills.dev
- Size: 50.8 KB
- Stars: 3
- Watchers: 1
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Roadmap: ROADMAP.md
Awesome Lists containing this project
README
# Welcome to Codeskills Bootcamp Starter! π
![]()
### Welcome Coders! π
We're thrilled to have you join our coding bootcamp and [community](https://codeskills.dev). This starter kit is your gateway to an exciting journey into the world of coding. While the road ahead may be challenging, remember that every coding rock star started right where you are now!
Here is a [guide to get you started with this starter-repo](https://blog.codeskills.dev/posts/how-to-setup-codeskills-bootcamp-starter)
### Together, We're Stronger πͺ
Coding can be tough, but it's a lot easier when you're part of a supportive community. Here, you're not alone. Our community of learners, mentors, and fellow bootcamp members is here to help you every step of the way. Together, we'll conquer coding challenges and celebrate victories!
### Prerequisites
- Familiarity with Git and Github
- If you are new to Git and Github, check out this guide:
[Git and Github basics: A Beginner's Guide](https://blog.codeskills.dev/posts/git-and-github-basics-a-beginners-guide)### Repo Structure π
Let's get familiar with the structure of this repository:
Roadmap: The [ROADMAP.md](/ROADMAP.md) contains a breakdown of all you will learn during this program and the recommended order to follow them.
Projects: Inside the [projects directory](/projects/), you'll find folders for all your coding projects. Each project comes with its own set of instructions and resources.
### Getting Started π
- [Fork this repo](https://github.com/codeskills-dev/bootcamp-starter/fork)
- Clone your forked repository to your local machine.
```sh
git clone https://github.com/your-username/bootcamp-starter.git
```- Go through the Roadmap step by step and ensure to complete all previous task before moving forward.
As you go through each step, mark them as completed by adding an `x` in the `[ ]` in [ROADMAP.md](/ROADMAP.md)```md
- [ ] **General Introduction to Web Development**
- [x] **General Introduction to Web Development**
```Checked off items will go from this
To this
- Create a new branch for each project you're working on.
```sh
git checkout -b project-1
```- Commit your changes and push them to your fork.
```sh
git add .
git commit -m "Project 1 complete"
git push origin project-1
```- Merge your changes into the master branch in your fork.
```sh
git checkout master
git merge project-1
git push origin master
```- Create a PR in the [Bootcamp-submissions](https://github.com/codeskills-dev/bootcamp-submissions) repo at the end of each project
- Create a new branch for the next project and follow all the steps.
### **Don't Open PRs in this starter repo**
Remember, only open pull requests in the main branch of your fork if they are improvements to the starter template itself.
For project-specific PRs, create them in the respective project repositories.### Let's Code Together! π€
Now that you're equipped with your starter kit and an amazing community to back you up, let's start coding! If you have questions, ideas, or just want to chat, head over to our Community Chat. Your coding journey is about to take off, and we're excited to be part of it.
### Give a Star! β
If you find this starter kit helpful, please consider starring the repository. Your star encourages us to keep improving it for you.
### Community
Join our vibrant coding community at [Codeskills](https://codeskills.dev/join-community) and connect with fellow learners.
### Author
- Paul Ehikhuemen ([@pauloe_me](https://twitter.com/pauloe_me))
Happy coding! π