7 lines
155 B
Bash
Executable File
7 lines
155 B
Bash
Executable File
#!/bin/bash
|
|
# 一键启动乘法口诀服务
|
|
cd "$(dirname "$0")"
|
|
# 没有证书就先生成
|
|
[ -f certs/cert.pem ] || bash gen-cert.sh
|
|
exec node server.js
|