Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 1.64 KB

CONTRIBUTE.md

File metadata and controls

52 lines (38 loc) · 1.64 KB

Are you wishing to contribute to this project to make it more attractive and functional ?

You are welcome! Just follow to contribute.

Steps for contribution

  1. Fork the repo

image

  1. Clone the forked repo into your local machine
$ git clone https://github.com/your_username/bloggingSite.git

image

  1. cd to the repo
 $ cd bloggingSite
  1. Create a branch
    $ git checkout -b mybranch
  1. Open the repo code using any IDE/text-editors (Intellij recommended)

  2. Add, Commit and Push the changes to your forked repo

$ git add .
$ git commit -m "your commit message"
$ git push origin mybranch
  1. Create a pull request from mybranch of your forked repo to main branch of this(upstream) repo.

image

  • Just click on Sync fork
  • After synced with upstream click on contribute
  • Open a pull request and wait for merge

For database Connection:

  • Procced to ConnectionProvider.java class inside utilities package and update the database url, username and password.

  • Import bloggingSite_user.sql (is inside webapp/ext) file to mysql database.

  • Start server you are all set.

    Contributors