-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathrav.yaml
More file actions
22 lines (22 loc) · 721 Bytes
/
rav.yaml
File metadata and controls
22 lines (22 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
scripts:
ui:
- cd frontend
- npm run dev
ui-install:
- cd frontend
- npm install
api:
- cd backend/src
- ../../venv/bin/python manage.py runserver
api-migrate:
- cd backend/src
- ../../venv/bin/python manage.py migrate
api-install:
- cd backend
- ../venv/bin/pip-compile src/requirements/dev.in --output-file requirements.dev.txt
- ../venv/bin/pip-compile src/requirements/prod.in --output-file requirements.txt
- ../venv/bin/pip install -r requirements.dev.txt
- ../venv/bin/pip install -r requirements.txt
generate-favicon:
# brew install imagemagick
- magick frontend/public/django-nextjs-favicon.png -resize 32x32 frontend/src/app/favicon.ico