Skip to content

fykaa/Acadmica

 
 

Repository files navigation

Untitled design

https://acadmica.social

Acadmica

Acadmica is running with the aim of becoming India's biggest student community, where students can help each other by sharing notes among themselves. We are engineering student ourselves, and we know the problems that engineering student faces in their college. College, development, coding, internships, placement preparation and whatnot. But we are providing notes, study materials, and coding questions for placements all in one place. We go through the internet to find the best resources for and serve you in one place. Also, if a student feels that his notes/study materials can help others, he or she can post the materials to us, and in return for that, you will be getting fame on social media handles.

Folder Structure

This is a multipages website. You can click on page at navbar to open your desired page.

  • public : This is a folder which contains an HTML page

    Page Name What is in that Page
    index.html This page contains all the html code of Acadmica web portal
  • src :

    Folder Name What is in that Folder
    CSS It contains one folder named as component-css and one CSS file named as index.css
    JS JavaScript Folder
    Assets This folder contains all the images used in site.
    • component-css :

      File Name What is in that File
      about.css It contains css code of About Acadmica part
      footer.css It contains css code of footer part
      main.css It contains css code of main hero page part of Acadmica
      navbar.css It contains css code of navbar of Acadmica
    • index.css : This file contains css code of base css file, it connects all the css file in it.

Setup & Contribution Guidelines:

  1. Fork The repository

Click on Fork button present on the upper-right area of the screen to create a copy of this repository to your GitHub account.

  1. Clone The repository using git
git clone https://github.com/<YOUR_USERNAME>/Acadmica.git

-> Navigate to Acadmica repo directory

cd Acadmica
  1. Add a reference to the original repository as upstream
git remote add upstream https://github.com/tier3guy/Acadmica.git

Verify the remotes for this repository

git remote -v

Output of above command will be same as this:

origin  https://github.com/<YOUR_USERNAME>/Acadmica.git (fetch)
origin  https://github.com/<YOUR_USERNAME>/Acadmica.git (push)
upstream    https://github.com/Acadmica/Acadmica.git (fetch)
upstream    https://github.com/Acadmica/Acadmica.git (push)
  1. Update Fork Repo From Upstream(remain updated with the orignal repo).

Update your local branch to be in sync with the original repo.

$ git pull upstream master

Contributing & making a pull request

  1. Create a new branch.
git checkout -b <your_branch_name>
  1. Perform your desired changes to the code base.

  2. Track your changes:heavy_check_mark: .

git add .
  1. Commit your changes
git commit -m "Relevant message"
  1. Push the committed changes in your feature branch to your remote repo.
git push -u origin <your_branch_name>
  1. To create a pull request, click on compare and pull requests. Please ensure that you compare your feature branch to the desired branch master of the repo to make a PR.

  2. Add an appropriate title and relevant description to your pull request explaining your changes and efforts done. And edit the PR template

  3. Click on Create Pull Request.

A big thanks to our valuable contributors

About

Better way to be productive

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 89.7%
  • CSS 8.5%
  • JavaScript 1.8%