Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/massigy/programmer_notes_webapp
a blog post type web app, where I can showcase my notes in my programming learning journey!
https://github.com/massigy/programmer_notes_webapp
css3 ejs expressjs filesystem git github html javascript mvc nodejs npm restapi sass scss
Last synced: about 15 hours ago
JSON representation
a blog post type web app, where I can showcase my notes in my programming learning journey!
- Host: GitHub
- URL: https://github.com/massigy/programmer_notes_webapp
- Owner: MassiGy
- License: other
- Created: 2022-01-18T21:07:21.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-02-22T18:34:50.000Z (12 months ago)
- Last Synced: 2024-02-22T19:40:40.716Z (12 months ago)
- Topics: css3, ejs, expressjs, filesystem, git, github, html, javascript, mvc, nodejs, npm, restapi, sass, scss
- Language: CSS
- Homepage: https://programmer-notes.up.railway.app/
- Size: 5.66 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Welcome to Programmer Notes.
## How to access the project:
- [Programmer Notes web app is online on railway.](https://programmer-notes.up.railway.app/)
---
## Used technologies:
- Nodejs/Expressjs for the backend.
- MongoDB Atlas for the database ( for the session store ).
- Ejs for the server side rendering template engine. (SSR)
- HTML/CSS/SCSS 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`
---
[Last edit: Feb, 2024]