GitXplorerGitXplorer
d

my-python-wsgi

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
38d237350e261de34f15ac942a0935778d740e95

the makefile for testing first

ddavid-xander committed 3 years ago
Unverified
e142c6eec8a0a5c7a607a32664767b25cf3ce000

testing multithreading

ddavid-xander committed 3 years ago
Unverified
2aa4baa8c5a20fff9bf774a1d6c007c9192346cb

first tests and results

ddavid-xander committed 3 years ago
Unverified
0c936c994eb7f663d7df12c3305347a4138c5503

checking nginx static

ddavid-xander committed 3 years ago
Unverified
39f0f48ff7ba714abce7973a643184574196fdd0

setting up gitignore

ddavid-xander committed 3 years ago
Unverified
fcb386549d914f3033d3022b384dba087e224ece

first commit

ddavid-xander committed 3 years ago

README

The README file for this repository.

The main goal of this project is to build a custom WSGI for python

The WSGI will be behind an nginx and will use a very super simple framework to check the WSGI behaviour.

It is actually a Docker based project for now. The idea is to be able to focus only in the WSGI.

In order to build the image

docker-compose build

To run the image

docker-compose up -d

To run and build the image

docker-compose up -d --build

To stop the image

docker-compose down -v

To check if something goes wrong

docker-compose logs -f

TESTING

export PYTHONPATH="${PYTHONPATH}:/Users/david/__PYTHON/WSGI/mywsgi/app/"