init commit
This commit is contained in:
commit
dfd166bd3b
55 changed files with 18538 additions and 0 deletions
15
Makefile
Normal file
15
Makefile
Normal file
|
@ -0,0 +1,15 @@
|
|||
|
||||
build-browser-app:
|
||||
npm install
|
||||
nodejs ./node_modules/webpack-cli/bin/cli.js
|
||||
|
||||
|
||||
server_keys: https.crt https.key
|
||||
https.key:
|
||||
openssl genrsa -passout 'pass:' -out https.key
|
||||
https.crt: https.key
|
||||
openssl req -x509 -key https.key -out https.crt -days 365 -subj "/C=US/ST=Test/L=Test/O=Test/CN=account.example.com" -addext "subjectAltName=DNS:account.example.com" \
|
||||
|
||||
|
||||
run: server_keys
|
||||
./venv/bin/gunicorn wsgi:app -b :9090 --certfile https.crt --keyfile https.key
|
Loading…
Add table
Add a link
Reference in a new issue