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.
You can access the live project at the following link: CSBS 2.0 Live Demo
if the above link is not wokring, check backup
To run this project locally, you can either use a virtual environment or Docker.
-
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
- On Windows:
-
Install the required packages:
pip install -r requirements.txt
- Run the application:
python app.py
- 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/.
- Open your web browser and go to http://127.0.0.1:5000/ to view the application.