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.