https://github.com/massigy/coding-for-beginners
Coding for Beginners project website
https://github.com/massigy/coding-for-beginners
css ejs expressjs git github html javscript mongodb mongodb-atlas mvc nodejs npm restapi unsplash-api
Last synced: about 1 month ago
JSON representation
Coding for Beginners project website
- Host: GitHub
- URL: https://github.com/massigy/coding-for-beginners
- Owner: MassiGy
- Created: 2021-04-08T20:44:33.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-06T11:03:38.000Z (over 2 years ago)
- Last Synced: 2025-02-07T10:53:29.377Z (12 months ago)
- Topics: css, ejs, expressjs, git, github, html, javscript, mongodb, mongodb-atlas, mvc, nodejs, npm, restapi, unsplash-api
- Language: EJS
- Homepage: https://coding-for-beginners.up.railway.app/
- Size: 568 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Welcome to Coding for Beginners.
## How to access the project:
- [Coding for Beginners is online on railway.](https://coding-for-beginners.up.railway.app/)
---
## Used technologies:
- Nodejs/Expressjs for the backend.
- MongoDB Atlas & Mongoose for the database.
- Passportjs for a localStrategy based authentication.
- Ejs for the server side rendering template engine. (SSR)
- HTML/CSS/Bootstrap for the views look.
- Git for source code control.
---
## How to contribute:
In short you need to:
- Fork the project.
- Clone the forked repo locally.
- Add some great stuff locally, push to your forked repo.
- Then fire up a pull request to this repo.
For more details, here are the steps to follow along.
- **First, fork the project on github.**
- **Use git to clone & setup your forked project locally.**
```sh
# after cloning, navigate to the project
# to sync with origin
git remote add upstream
git remote add origin
# to setup your locat dev branch
git branch your_local_branch
git checkout your_local_branch
# to add your changes
git add *
git commit -m "+your_local_branch: your commit here"
# push to your forked repo
git push origin your_local_branch
```
- **Now, that your work is on github, you can go ahead & fire up a pull request.**
After doing so, I will be prompted to review your code to see if it will be merged or not. Thanks for your hard work & take care!
Also by doing so, if any updates are made to the main repo `master` branch, you can easily get the latest updates with `git pull upstream master`
---