Marc Cataford
fbba07cbdc
* build(backend): requirements-locks to use venv directly to avoid needing to activate * build(backend): taskfile cleaning, no more sourcing * build(frontend): remove unneeded syntax, cmds>cmd for one-liners * docs: instructors on local setup * ci: hoisted default working directory settings
6 lines
143 B
Bash
6 lines
143 B
Bash
#!/bin/bash
|
|
|
|
PIP_COMPILE=.venv/bin/pip-compile
|
|
|
|
$PIP_COMPILE requirements.in --no-header \
|
|
&& $PIP_COMPILE requirements_dev.in --no-header
|