- Open your VS Code
F1
>Remote Containers: Open Folder in Container...
and selectdjango
folder- Open new terminal and run
django-admin startproject mysite .
. - After
django-admin startproject mysite
, runpython manage.py runserver 0:8000
on terminal.
- Open new window
F1
>Remote Containers: Open Folder in Container...
and selectnuxt
folder- Open new terminal in VS Code and run
npx create-nuxt-app .
. - After
npx create-nuxt-app .
, runnpm run dev
on terminal.
If you want to open both environments, open two windows in your VS Code. Please read Connecting to multiple containers at once in detail.