An open API service indexing awesome lists of open source software.

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! πŸ’»

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

![Unchecked item](https://github.com/codeskills-dev/bootcamp-starter/assets/67395687/b43398e8-3caa-4cc9-92bc-cac50e974c86)

To this

![Checked item](https://github.com/codeskills-dev/bootcamp-starter/assets/67395687/799ce656-310a-4db4-855d-2fe8c8ba5159)

- 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! πŸš€