Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 666 Bytes

README.md

File metadata and controls

37 lines (23 loc) · 666 Bytes

gpu-booking-app

This is a simple GPU booking app to manage the use of DGX Workstation server together easily.

Quickstart

Local Setup

  1. Install the required Python packages:

    pip install -r requirements.txt
  2. Run the application:

    python main.py
  3. Open your web browser and go to http://127.0.0.1:5000

Docker Setup

  1. Build the Docker image:

    docker build -t gpu-booking-app .
  2. Run the Docker container:

    docker run -p 5000:5000 gpu-booking-app
  3. Open your web browser and go to http://127.0.0.1:5000