- Fork the Repository.
- Clone your fork to your local environment
$ git clone https://github.com/<your-username>/Portfolio_CCS - Setup an Upstream
$ git remote add upstream https://github.com/creative-computing-society/Portfolio_CCS- Fetch and Merge Upstream before you start to code!
$ git fetch upstream
$ git merge upstream main- Make the required changes, then:
$ git add .
$ git commit -m "meaningful commit message"- Push the changes to your fork
$ git pushMake sure you have Python and pip installed before proceeding further.
- Setup a virtual Environment, we have used pipenv for the same
$ pip install pipenv
$ pipenv install
$ pipenv shell- Install all dependencies (within the virtual environment)
$ pip install -r requirements.txt- To run the server
$ python app.py 
