Unfinished project aimed at making Korean cloud hosting more affordable and accessible
Find a file
2026-02-12 07:24:02 -08:00
__pycache__ Upload 2026-02-12 07:24:02 -08:00
routes Upload 2026-02-12 07:24:02 -08:00
src Upload 2026-02-12 07:24:02 -08:00
static Upload 2026-02-12 07:24:02 -08:00
templates Upload 2026-02-12 07:24:02 -08:00
.gitignore Upload 2026-02-12 07:24:02 -08:00
.prettierignore Upload 2026-02-12 07:24:02 -08:00
.prettierrc Upload 2026-02-12 07:24:02 -08:00
kubeload.py Upload 2026-02-12 07:24:02 -08:00
package-lock.json Upload 2026-02-12 07:24:02 -08:00
package.json Upload 2026-02-12 07:24:02 -08:00
README.md Upload 2026-02-12 07:24:02 -08:00
requirements.txt Upload 2026-02-12 07:24:02 -08:00
rsync.sh Upload 2026-02-12 07:24:02 -08:00
tailwind.config.js Upload 2026-02-12 07:24:02 -08:00

Kubeload

Kubeload is an unfinished project that began with the goal of making cloud hosting more affordable and accessible in Korea, where prices tend to be higher than in the US or Europe, and there are fewer local competitors.

Prerequisites

Setup Instructions

1. Set up the Python Virtual Environment

  • Linux/macOS:

    python3 -m venv .venv
    source .venv/bin/activate
    
  • Windows:

    python -m venv .venv
    .\.venv\Scripts\activate
    

2. Install Python Dependencies

With the virtual environment activated, install the required Python packages:

pip install -r requirements.txt

3. Start the Flask Server

flask run

The Flask server will be available at: http://127.0.0.1:5000/

4. Start the Front-end Development Server

npm run develop