@live-change/frontend-template 0.8.99 → 0.8.101

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Dockerfile CHANGED
@@ -27,6 +27,7 @@ WORKDIR /app
27
27
  COPY package-deps.json package.json
28
28
  RUN --mount=type=secret,id=npmrc,target=/root/.npmrc yarn install
29
29
 
30
+ COPY /data data
30
31
  RUN mkdir -p /app/docker
31
32
  COPY docker/restore-backup-with-service.sh /app/docker/restore-backup-with-service.sh
32
33
  COPY docker/restore-backup.sh /app/docker/restore-backup.sh
@@ -39,18 +40,24 @@ ARG BASE_HREF='http://localhost:8001/'
39
40
  ARG BRAND_DOMAIN='example.com'
40
41
  ARG BRAND_NAME='Example App'
41
42
  ARG BRAND_SMS_FROM='Example App'
43
+ ARG GOOGLE_CLIENT_ID='unknown'
44
+ ARG LINKEDIN_CLIENT_ID='unknown'
42
45
 
43
46
  ENV VERSION=$VERSION
44
47
  ENV BASE_HREF=$BASE_HREF
45
48
  ENV BRAND_DOMANIN=$BRAND_DOMANIN
46
49
  ENV BRAND_NAME=$BRAND_NAME
47
50
  ENV BRAND_SMS_FROM=$BRAND_SMS_FROM
51
+ ENV GOOGLE_CLIENT_ID=$GOOGLE_CLIENT_ID
52
+ ENV LINKEDIN_CLIENT_ID=$LINKEDIN_CLIENT_ID
48
53
 
49
54
  RUN echo "VERSION=$VERSION" >> /etc/environment
50
55
  RUN echo "BASE_HREF=$BASE_HREF" >> /etc/environment
51
56
  RUN echo "BRAND_DOMAIN=$BRAND_DOMAIN" >> /etc/environment
52
57
  RUN echo "BRAND_NAME=$BRAND_NAME" >> /etc/environment
53
58
  RUN echo "BRAND_SMS_FROM=$BRAND_SMS_FROM" >> /etc/environment
59
+ RUN echo "GOOGLE_CLIENT_ID=$GOOGLE_CLIENT_ID" >> /etc/environment
60
+ RUN echo "LINKEDIN_CLIENT_ID=$LINKEDIN_CLIENT_ID" >> /etc/environment
54
61
 
55
62
  RUN npm run build
56
63
 
File without changes
@@ -21,6 +21,12 @@ pushd "$DIR/.."
21
21
  --secret id=npmrc,src=$HOME/.npmrc\
22
22
  --build-arg VERSION=${VERSION}-${DEPLOYMENT}\
23
23
  --build-arg BASE_HREF=${BASE_HREF}\
24
+ --build-arg GOOGLE_CLIENT_ID="${GOOGLE_CLIENT_ID}"\
25
+ --build-arg LINKEDIN_CLIENT_ID="${LINKEDIN_CLIENT_ID}"\
26
+ --build-arg BRAND_NAME="${BRAND_NAME}"\
27
+ --build-arg BRAND_DOMAIN="${BRAND_DOMAIN}"\
28
+ --build-arg BRAND_SMS_FROM="${BRAND_SMS_FROM}"\
29
+ --build-arg PROJECT_NAME="${PROJECT_NAME}"\
24
30
  .
25
31
 
26
32
  docker push ${REPO}/${NAME}:${VERSION}-${DEPLOYMENT}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/frontend-template",
3
- "version": "0.8.99",
3
+ "version": "0.8.101",
4
4
  "scripts": {
5
5
  "memDev": "node server/start.js memDev --enableSessions --initScript ./init.js --dbAccess",
6
6
  "localDevInit": "rm tmp.db; node server/start.js localDev --enableSessions --initScript ./init.js --dbAccess",
@@ -35,41 +35,41 @@
35
35
  "@codemirror/language": "6.10.1",
36
36
  "@dotenvx/dotenvx": "0.27.0",
37
37
  "@fortawesome/fontawesome-free": "^6.5.2",
38
- "@live-change/access-control-frontend": "^0.8.99",
39
- "@live-change/access-control-service": "^0.8.99",
40
- "@live-change/backup-service": "^0.8.99",
41
- "@live-change/blog-frontend": "^0.8.99",
42
- "@live-change/blog-service": "^0.8.99",
43
- "@live-change/cli": "^0.8.99",
44
- "@live-change/content-frontend": "^0.8.99",
45
- "@live-change/content-service": "^0.8.99",
46
- "@live-change/dao": "^0.8.99",
47
- "@live-change/dao-vue3": "^0.8.99",
48
- "@live-change/dao-websocket": "^0.8.99",
49
- "@live-change/db-client": "^0.8.99",
50
- "@live-change/email-service": "^0.8.99",
51
- "@live-change/framework": "^0.8.99",
52
- "@live-change/frontend-auto-form": "^0.8.99",
53
- "@live-change/frontend-base": "^0.8.99",
54
- "@live-change/geoip-service": "^0.8.99",
55
- "@live-change/image-frontend": "^0.8.99",
56
- "@live-change/locale-settings-service": "^0.8.99",
57
- "@live-change/password-authentication-service": "^0.8.99",
58
- "@live-change/prosemirror-service": "^0.8.99",
59
- "@live-change/secret-code-service": "^0.8.99",
60
- "@live-change/secret-link-service": "^0.8.99",
61
- "@live-change/session-service": "^0.8.99",
62
- "@live-change/task-service": "^0.8.99",
63
- "@live-change/upload-frontend": "^0.8.99",
64
- "@live-change/url-frontend": "^0.8.99",
65
- "@live-change/url-service": "^0.8.99",
66
- "@live-change/user-frontend": "^0.8.99",
67
- "@live-change/user-identification-service": "^0.8.99",
68
- "@live-change/user-service": "^0.8.99",
69
- "@live-change/vote-service": "^0.8.99",
70
- "@live-change/vue3-components": "^0.8.99",
71
- "@live-change/vue3-ssr": "^0.8.99",
72
- "@live-change/wysiwyg-frontend": "^0.8.99",
38
+ "@live-change/access-control-frontend": "^0.8.101",
39
+ "@live-change/access-control-service": "^0.8.101",
40
+ "@live-change/backup-service": "^0.8.101",
41
+ "@live-change/blog-frontend": "^0.8.101",
42
+ "@live-change/blog-service": "^0.8.101",
43
+ "@live-change/cli": "^0.8.101",
44
+ "@live-change/content-frontend": "^0.8.101",
45
+ "@live-change/content-service": "^0.8.101",
46
+ "@live-change/dao": "^0.8.101",
47
+ "@live-change/dao-vue3": "^0.8.101",
48
+ "@live-change/dao-websocket": "^0.8.101",
49
+ "@live-change/db-client": "^0.8.101",
50
+ "@live-change/email-service": "^0.8.101",
51
+ "@live-change/framework": "^0.8.101",
52
+ "@live-change/frontend-auto-form": "^0.8.101",
53
+ "@live-change/frontend-base": "^0.8.101",
54
+ "@live-change/geoip-service": "^0.8.101",
55
+ "@live-change/image-frontend": "^0.8.101",
56
+ "@live-change/locale-settings-service": "^0.8.101",
57
+ "@live-change/password-authentication-service": "^0.8.101",
58
+ "@live-change/prosemirror-service": "^0.8.101",
59
+ "@live-change/secret-code-service": "^0.8.101",
60
+ "@live-change/secret-link-service": "^0.8.101",
61
+ "@live-change/session-service": "^0.8.101",
62
+ "@live-change/task-service": "^0.8.101",
63
+ "@live-change/upload-frontend": "^0.8.101",
64
+ "@live-change/url-frontend": "^0.8.101",
65
+ "@live-change/url-service": "^0.8.101",
66
+ "@live-change/user-frontend": "^0.8.101",
67
+ "@live-change/user-identification-service": "^0.8.101",
68
+ "@live-change/user-service": "^0.8.101",
69
+ "@live-change/vote-service": "^0.8.101",
70
+ "@live-change/vue3-components": "^0.8.101",
71
+ "@live-change/vue3-ssr": "^0.8.101",
72
+ "@live-change/wysiwyg-frontend": "^0.8.101",
73
73
  "@vueuse/core": "^10.11.0",
74
74
  "codeceptjs-assert": "^0.0.5",
75
75
  "compression": "^1.7.4",
@@ -91,7 +91,7 @@
91
91
  "vue3-scroll-border": "0.1.6"
92
92
  },
93
93
  "devDependencies": {
94
- "@live-change/codeceptjs-helper": "^0.8.99",
94
+ "@live-change/codeceptjs-helper": "^0.8.101",
95
95
  "codeceptjs": "^3.6.5",
96
96
  "generate-password": "1.7.1",
97
97
  "playwright": "^1.41.2",
@@ -102,5 +102,5 @@
102
102
  "author": "Michał Łaszczewski <michal@laszczewski.pl>",
103
103
  "license": "ISC",
104
104
  "description": "",
105
- "gitHead": "7d9970c62f5d019473e04353c5b4890683fa5dd6"
105
+ "gitHead": "6cf152a7641450f163278a70d67ff721f13d4038"
106
106
  }