React for frontend, Firebase for backend
26th November'20-Live
It is important to understand the directory structure before contributing!
.
├── backend # Backend Scripts
├── frontend # Frontend: using React
├── rawdesign # Raw Design Theme using HTML, CSS
├── LICENSE
└── readme.md
Before making any changes, let us know which section you would like to contribute either by opening an Issue or notifying us on our Discord Server.
- Fork the Repository - Learn How
- Clone the project to your system - Learn How
- Make all your desired changes to the code.
- Send a Pull Request! - Learn How
To update the forked repo with the master one:
git remote add upstream https://github.com/DSCKGEC/DSCK-Website.git
git fetch upstream
git rebase upstream/main
git pull origin main (Grabs online updates and merges them with local work)
git pull