kevos-attire/backend
2024-08-21 14:45:30 -07:00
..
__pycache__ working orders page 2024-08-20 12:12:02 -07:00
instance form modified to send to backend only instead of email 2024-08-21 13:56:18 -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
.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 working orders page 2024-08-20 12:12:02 -07:00
Dockerfile added backend folder and began flask, update gitignore 2024-08-08 10:00:24 -07:00
main.py update to main flask in order to reach host port 2024-08-21 14:44:40 -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