mirror of https://github.com/midoks/mdserver-web
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.
13 lines
324 B
13 lines
324 B
7 months ago
|
#!/bin/expect -d
|
||
|
set timeout 20
|
||
|
|
||
|
spawn gunicorn --bind unix:/tmp/pgadmin4.sock \
|
||
|
--workers=1 \
|
||
|
--threads=25 \
|
||
|
--chdir /www/server/pgadmin/run/lib/python3.10/site-packages/pgadmin4 pgAdmin4:app
|
||
|
expect {
|
||
|
"Email address:" { send "mdserver-web@gmail.com\r"; exp_continue }
|
||
|
"Password" { send "123123\r" }
|
||
|
}
|
||
|
expect eof
|