Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
$ git log --oneline --stat
stars:1,629
forks:385
updated:2026년 4월 7일 10:21
파일 탐색기
SKILL.md
Steps for creating or modifying Django forms and adding validation
Steps for adding a new Django REST Framework API endpoint
Steps for creating or modifying a Django model
Steps for generating and applying Django migrations
Docker Compose, container services, deployment
How to update project documentation
| name | django-run-locally |
| description | Steps for initiating the Django development server without Docker |
Use this skill to spin up or invoke the local development backend sequence for rapid testing processes.
cd appuv: uv sync --all-extras --all-groups. .venv/bin/activatepython manage.py migratepython manage.py create_admin_usermake npminstall
python manage.py collectstatic --noinput
python manage.py compress --force
python manage.py runserver127.0.0.1:8000).http://127.0.0.1:8000 loads properly without missing CSS/MIME type errors.from django.conf import settings. Never import the isolated system settings configuration natively (e.g. absolutely never execute from eventyay.config import settings).collectstatic and compress --force steps to properly build the Javascript/CSS chunks.