Skip to content

Ronak-Ronu/csbs2.0

Repository files navigation

CSBS 2.0 (now 4.0)

CSBS 2.0 is a Flask-based web application designed to provide an interactive platform for users to engage with various features. This project showcases the power of Flask in building dynamic web applications.

Live Demo

You can access the live project at the following link: CSBS 2.0 Live Demo

if the above link is not wokring, check backup

Screenshots of few Pages

alt text alt text alt text alt text alt text

Installation

To run this project locally, you can either use a virtual environment or Docker.

Option 1: Local Installation

  • Clone the repository:

    git clone https://github.com/Ronak-Ronu/csbs2.0.git
  • Navigate to the project directory:

    cd csbs2.0
  • Create a virtual environment:

    python -m venv venv
  • Activate the virtual environment:

    • On Windows:
      venv\Scripts\activate   
    • On macOS/Linux:
      source venv/bin/activate
  • Install the required packages:

pip install -r requirements.txt
  • Run the application:
python app.py

Option 2: Running with Docker

  • Ensure you have Docker installed on your machine.
  • Build the Docker image:
    docker build -t csbs2.0 .
  • Run the Docker container:
    docker run -p 5000:5000 csbs2.0
  • Access the application in your web browser at http://127.0.0.1:5000/.

Usage