kevos-attire/backend
2024-08-31 01:51:01 -07:00
..
__pycache__ fixed order form not resetting 2024-08-21 19:07:51 -07:00
instance all emails working when a customer submits an order 2024-08-31 01:51:01 -07: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 copied over images for docker container to have access 2024-08-21 14:52:09 -07: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 client email working, need self email still 2024-08-29 02:56:32 -07:00
models.py backend orders working, need to create ui and connect form to send orders 2024-08-20 01:44:38 -07: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