You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
command: poetry run django-admin runserver --settings=tests.settings.dev --pythonpath=.
12
+
name: Runserver
13
+
14
+
- init: |
15
+
clear
16
+
nvm install
17
+
npm install
18
+
command: npm run start
19
+
name: Node
20
+
openMode: split-right
21
+
22
+
- init: |
23
+
clear
24
+
gp sync-await python
25
+
command: poetry run ./runtests.py
26
+
name: Tests
27
+
openMode: split-right
28
+
29
+
- init: |
30
+
clear
31
+
command: |
32
+
echo "There are 3 terminals ready to use"
33
+
echo "1. Runserver: is running the django dev-server on http://127.0.0.1:8000"
34
+
echo "2. Tests: will run the tests once and wait for 'poetry run ./runtests.py' to run the tests again"
35
+
echo "3. Node: will run 'npm run start' and watch files for changes"
36
+
echo "4. Bash: is this terminal and can be use to run other adhoc commands"
37
+
echo "Try out the render_patterns command: 'poetry run django-admin render_patterns --settings=tests.settings.dev --pythonpath=.' and look in the 'dpl-rendered-patterns' folder"
0 commit comments