blob: 3efa58593a41d8a0b3214ab7be41944f2d698000 (
plain)
1
2
3
4
5
6
7
8
|
# Files
- cgi-bin/data.py: CGI script for providing tree-of-life data to client
- data: Contains scripts for generating the tree-of-life database
# During development
Having generated the database as data/data.db, and with this as the current
directory, running `python3 -m http.server --cgi 8000` allows the client to access
the CGI script, and hence the database, via `localhost:8000/cgi-bin/data.py`.
|