-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathjustfile
More file actions
24 lines (17 loc) · 730 Bytes
/
Copy pathjustfile
File metadata and controls
24 lines (17 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import? 'adamghill.justfile'
import? '../dotfiles/just/justfile'
src := "src/coltrane"
# List commands
_default:
just --list --unsorted --justfile {{ justfile() }} --list-heading $'Available commands:\n'
# Grab default `adamghill.justfile` from GitHub
fetch:
curl https://raw.githubusercontent.com/adamghill/dotfiles/master/just/justfile > adamghill.justfile
serve:
uv run --all-extras python3 example_standalone/app.py runserver 0:8045
serve-integrated:
uv run --all-extras python3 example_integrated/app.py runserver 0:8046
serve-sites:
uv run --all-extras python3 example_sites_standalone/sites/app.py runserver 0:8047
serve-prod:
uv run --all-extras gunicorn -b localhost:8045 example_standalone.app:wsgi