Initialize IKT218 2026 OSDEV Base

This commit is contained in:
kmltrgyclk
2026-01-26 02:38:32 +01:00
commit 6646b57def
47 changed files with 2765 additions and 0 deletions

20
.github/web/README.md vendored Normal file
View File

@@ -0,0 +1,20 @@
# IKT218 - OSDev WebServer
This package is used to host a virutal machine for your operating system.
## Installation
Create a virtual environment using the `venv.sh` script
```bash
sh venv.sh # Install virtual envrionment
source venv/bin/activate
```
Install requirements:
```bash
pip install -e .
```
## Usage
```bash
source venv/bin/activate # Activate virtual environment
python web/main.py
```