You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
399 B

2 years ago
#!/bin/bash
run:
#make cert &&
2 years ago
python server.py
2 years ago
testToken:
python core/jwt.py
cert:
openssl req -new -x509 -keyout localhost.pem -out localhost.pem -nodes -days 365
2 years ago
testEnv:
python utils/parsePortage.py envMake
testEnvUse:
python utils/parsePortage.py use
testEnvMask:
python utils/parsePortage.py mask
testEnvUnMask:
python utils/parsePortage.py unmask
2 years ago
test:
echo 'test'
2 years ago