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
Copy file name to clipboardExpand all lines: .gitpod.yml
+5-13Lines changed: 5 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -15,24 +15,16 @@ tasks:
15
15
clear
16
16
nvm install
17
17
npm install
18
-
command: npm run start
18
+
command: npm run build
19
19
name: Node
20
20
openMode: split-right
21
21
22
22
- init: |
23
23
clear
24
+
echo "Waiting for python..."
24
25
gp sync-await python
25
-
command: poetry run ./runtests.py
26
+
command: |
27
+
poetry run ./runtests.py
28
+
poetry run django-admin render_patterns --settings=tests.settings.dev --pythonpath=.
26
29
name: Tests
27
30
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"
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,13 @@
3
3
This document contains information for anyone wishing to contribute to the project.
4
4
5
5
6
-
7
6
## Installation
8
7
9
-
The repo includes a simple test application that can be run locally to develop the pattern library itself.
8
+
The repo includes a simple test application that can be run to develop the pattern library itself.
9
+
10
+
[](https://gitpod.io/#https://github.com/torchbox/django-pattern-library)*Using the [Poetry setup](#run-locally-with-poetry)*
0 commit comments