Marc Cataford
bf7431f747
* feat(backend): sub fetch endpoints * ci: skip frontend/backend if no frontend change * ci: backend formatting * build: tooling and commands * build: psycopg2 * build: dependency locking tooling * build: pylint * feat: migration handling * feat: rudimentary upload flow * feat: basic file create/read interactions * docs: stubs * build: migration command
9 lines
149 B
Bash
9 lines
149 B
Bash
#!/bin/bash
|
|
|
|
python -m venv .venv
|
|
|
|
. .venv/bin/activate
|
|
|
|
pip install -U pip==23.0.0 pip-tools==7.1.0
|
|
|
|
pip-sync requirements.txt requirements_dev.txt
|