Skip to content

creative-computing-society/Portfolio_CCS

Repository files navigation

Portfolio Wall for Batch of 2025 at TIET

Greetings contributors! Let's get you started with your open source journey ✨

Setup the repository

  • 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 push
  • You are now ready to open a Pull Request!

  • If you want to run flask server locally, refer below.

Setup Flask Server Locally

Make 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