https://github.com/massigy/better-urls
this web app will allow the user to create a arbitrary Canonical Name to a preexisting domain name.
https://github.com/massigy/better-urls
css ejs expressjs git github googleauthentication html javascript mvc-architecture nodejs npm oauth2 railway sass
Last synced: 2 months ago
JSON representation
this web app will allow the user to create a arbitrary Canonical Name to a preexisting domain name.
- Host: GitHub
- URL: https://github.com/massigy/better-urls
- Owner: MassiGy
- License: mit
- Created: 2022-04-11T21:23:13.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2025-06-01T07:31:52.000Z (about 1 year ago)
- Last Synced: 2025-06-01T16:02:08.775Z (about 1 year ago)
- Topics: css, ejs, expressjs, git, github, googleauthentication, html, javascript, mvc-architecture, nodejs, npm, oauth2, railway, sass
- Language: CSS
- Homepage: https://better-urls.up.railway.app/
- Size: 2.25 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Welcome to Better Urls.
## How to access the project:
- [Better urls api is online on railway.](https://better-urls.up.railway.app/)
---
## Used technologies:
- Nodejs/Expressjs for the backend.
- Google Auth0 based strategy for authentication.
- 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`
---