openssl genpkey -algorithm RSA -out key.pem
openssl req -new -key key.pem -out cert.csr -subj "/C=JP/ST=Tokyo/L=Chiyoda/O=Example Inc./CN=localhost"
openssl x509 -req -in cert.csr -signkey key.pem -out cert.pem -days 365
python -m venv venv
. ./venv/bin/activate
pip install aiohttp
python server.py