File tree Expand file tree Collapse file tree 8 files changed +129
-43
lines changed Expand file tree Collapse file tree 8 files changed +129
-43
lines changed Original file line number Diff line number Diff line change @@ -172,3 +172,6 @@ cython_debug/
172
172
173
173
# Misc
174
174
.DS_Store
175
+
176
+ # Node packages
177
+ node_modules
Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
5
5
ENV PYTHONDONTWRITEBYTECODE=1
6
6
ENV PYTHONUNBUFFERED=1
7
7
8
+ # Add nodejs v22
9
+ RUN apt-get update \
10
+ && apt-get install -y curl gnupg \
11
+ && curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
12
+ && apt-get install -y nodejs \
13
+ && apt-get clean \
14
+ && rm -rf /var/lib/apt/lists/*
15
+
8
16
WORKDIR /app
9
17
10
18
# Copy the project into the image
@@ -16,4 +24,4 @@ RUN find /app -name "*.sqlite3" -delete
16
24
# Sync the project into a new environment, using the frozen lockfile
17
25
RUN uv sync --frozen
18
26
19
- ENTRYPOINT [ "/app/entrypoint.sh" ]
27
+ ENTRYPOINT [ "/app/entrypoint.sh" ]
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ mkdir -p ${LOG_DIR}
24
24
25
25
# update changes before update
26
26
# git pull
27
+ npm install
27
28
source .venv/bin/activate
28
29
uv sync
29
30
cd pythonkr_backend
Original file line number Diff line number Diff line change 2
2
3
3
4
4
cd /app
5
+ npm install
5
6
source .venv/bin/activate
6
7
uv sync
7
8
cd /app/pythonkr_backend
Original file line number Diff line number Diff line change
1
+ {
2
+ "devDependencies" : {
3
+ "cross-env" : " ^7.0.3"
4
+ }
5
+ }
Original file line number Diff line number Diff line change 17
17
}
18
18
},
19
19
{
20
- "model" : " wagtailcore.page " ,
20
+ "model" : " wagtailcore.site " ,
21
21
"pk" : 1 ,
22
22
"fields" : {
23
- "path" : " 0001" ,
24
- "depth" : 1 ,
25
- "numchild" : 1 ,
26
- "translation_key" : " 0bddbb0f-7275-4646-81a5-c89de32daa6c" ,
27
- "locale" : 1 ,
28
- "latest_revision" : null ,
29
- "live" : true ,
30
- "has_unpublished_changes" : false ,
31
- "first_published_at" : null ,
32
- "last_published_at" : null ,
33
- "live_revision" : null ,
34
- "go_live_at" : null ,
35
- "expire_at" : null ,
36
- "expired" : false ,
37
- "locked" : false ,
38
- "locked_at" : null ,
39
- "locked_by" : null ,
40
- "title" : " Root" ,
41
- "draft_title" : " Root" ,
42
- "slug" : " root" ,
43
- "content_type" : [
44
- " wagtailcore" ,
45
- " page"
46
- ],
47
- "url_path" : " /" ,
48
- "owner" : null ,
49
- "seo_title" : " " ,
50
- "show_in_menus" : false ,
51
- "search_description" : " " ,
52
- "latest_revision_created_at" : null ,
53
- "alias_of" : null
23
+ "hostname" : " localhost" ,
24
+ "port" : 80 ,
25
+ "site_name" : " " ,
26
+ "root_page" : 3 ,
27
+ "is_default_site" : true
54
28
}
55
29
},
56
30
{
Original file line number Diff line number Diff line change @@ -51,15 +51,7 @@ module.exports = {
51
51
* comment the line below to disable '@tailwindcss/forms'.
52
52
*/
53
53
require ( '@tailwindcss/forms' ) ,
54
- plugins : [
55
- /**
56
- * '@tailwindcss/forms' is the forms plugin that provides a minimal styling
57
- * for forms. If you don't like it or have own styling for forms,
58
- * comment the line below to disable '@tailwindcss/forms'.
59
- */
60
- require ( '@tailwindcss/forms' ) ,
61
- require ( '@tailwindcss/typography' ) ,
62
- require ( '@tailwindcss/aspect-ratio' ) ,
63
- ] ,
54
+ require ( '@tailwindcss/typography' ) ,
55
+ require ( '@tailwindcss/aspect-ratio' ) ,
64
56
] ,
65
57
}
You can’t perform that action at this time.
0 commit comments