Skip to content

A basic WSGI application from scratch, served using apache server. WSGI is what high-level framework like Flask, Django and FastAPI are built on, thus you could say, this is how to build your own web framework from scratch.

Notifications You must be signed in to change notification settings

kobbyowen/WSGI-App

Repository files navigation

WSGI-App

A basic WSGI application from scratch, served using apache server. WSGI is what high-level web frameworks like Flask, Django and FastAPI are built on, thus you could say, this is how to build your own web framework from scratch.

Requirements

Docker

Setting Up The Project

Change directory to project

docker -build -t test/wsgi-app .
docker run -d -p 8000:80 test/wsgi-app

NB : You can change container name and port

About

A basic WSGI application from scratch, served using apache server. WSGI is what high-level framework like Flask, Django and FastAPI are built on, thus you could say, this is how to build your own web framework from scratch.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published