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.

7 lines
332B

  1. [phases.setup]
  2. nixPkgs = ['python310']
  3. cmds = ['apt-get update','apt-get install -y --no-install-recommends ffmpeg espeak libavcodec-extra']
  4. [phases.install]
  5. cmds = ['python -m venv /opt/venv && . /opt/venv/bin/activate && pip install -r requirements.txt && pip install -r requirements-optional.txt']
  6. [start]
  7. cmd = "python ./app.py"