kevos-attire/backend
2024-11-21 22:07:08 -08:00
..
__pycache__ product page reflecting information from strapi api 2024-11-21 22:07:08 -08:00
instance product page reflecting information from strapi api 2024-11-21 22:07:08 -08:00
static working orders page 2024-08-20 12:12:02 -07:00
templates form modified to send to backend only instead of email 2024-08-21 13:56:18 -07:00
uploads product page reflecting information from strapi api 2024-11-21 22:07:08 -08:00
.env flask file upload working 2024-08-08 21:27:49 -07:00
.gitignore update gitignore 2024-08-21 14:45:30 -07:00
config.py copied over images for docker container to have access 2024-08-21 14:52:09 -07:00
Dockerfile update dockerfile to venv 2024-08-21 14:45:57 -07:00
main.py product page reflecting information from strapi api 2024-11-21 22:07:08 -08:00
models.py product page reflecting information from strapi api 2024-11-21 22:07:08 -08:00
private_key.txt form modified to send to backend only instead of email 2024-08-21 13:56:18 -07:00
public_key.txt form modified to send to backend only instead of email 2024-08-21 13:56:18 -07:00
readme.md form modified to send to backend only instead of email 2024-08-21 13:56:18 -07:00
requirements.txt form modified to send to backend only instead of email 2024-08-21 13:56:18 -07:00
vapid_private.pem form modified to send to backend only instead of email 2024-08-21 13:56:18 -07:00

Install vapid keys

openssl ecparam -name prime256v1 -genkey -noout -out vapid_private.pem openssl ec -in ./vapid_private.pem -outform DER|tail -c +8|head -c 32|base64|tr -d '=' |tr '/+' '_-' >> private_key.txt openssl ec -in ./vapid_private.pem -pubout -outform DER|tail -c 65|base64|tr -d '=' |tr '/+' '_-' >> public_key.txt