7 lines
151 B
Bash
7 lines
151 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
export PYTHONIOENCODING=utf-8
|
||
|
|
export LC_ALL=C.UTF-8
|
||
|
|
export LANG=C.UTF-8
|
||
|
|
|
||
|
|
cd /app/server && .venv/bin/python3 /tmp/create_employee_input.py
|