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
@@ -302,7 +315,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
302
315
- build(deps): bump next from 15.3.4 to 15.5.2 in /react-email-preview [`#8660`](https://github.com/opengovsg/FormSG/pull/8660)
303
316
- fix(deps): bump next from 15.3.4 to 15.5.2 [`#8661`](https://github.com/opengovsg/FormSG/pull/8661)
304
317
- build(deps-dev): bump vite from 5.4.19 to 5.4.20 in /frontend [`#8686`](https://github.com/opengovsg/FormSG/pull/8686)
305
-
- fix: home number fields are added to the draft despite not being modified [`#8704`](https://github.com/opengovsg/FormSG/pull/8704)
306
318
- Revert "feat: save draft v1.0 (#8091)" [`ef00908`](https://github.com/opengovsg/FormSG/commit/ef00908c4fa711b8022f06a59595d13ec24d2963)
307
319
- Revert "fix: home number fields are added to the draft despite not being modified (#8704)" [`8ceffce`](https://github.com/opengovsg/FormSG/commit/8ceffce1e0485fa4623cb941dd1042f73bedd5f6)
308
320
- chore: bump version to v6.242.0 [`49cfc58`](https://github.com/opengovsg/FormSG/commit/49cfc582734a9110861ec37aa14932753639e334)
@@ -311,10 +323,11 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
311
323
312
324
> 16 September 2025
313
325
326
+
- fix: home number fields are added to the draft despite not being modified [`#8704`](https://github.com/opengovsg/FormSG/pull/8704)
314
327
- feat: save draft v1.0 [`#8091`](https://github.com/opengovsg/FormSG/pull/8091)
315
328
- build: merge release v6.240.0 to develop [`#8695`](https://github.com/opengovsg/FormSG/pull/8695)
For comprehensive self-hosting guides, configuration references, and deployment instructions, visit our **[FormSG Self-Hosting Guide](https://ogp-international.gitbook.io/ogp-international-hub/self-hosting/formsg)**.
15
14
16
15
The GitBook documentation is actively maintained and provides:
16
+
17
17
- Deployment guides for AWS and other platforms
18
18
- Configuration reference for all environment variables
19
19
- Component customization guides
@@ -23,7 +23,7 @@ The GitBook documentation is actively maintained and provides:
23
23
## Table of Contents
24
24
25
25
-[Contributing](#contributing)
26
-
-[IMPORTANT NOTE TO ALL CONTRIBUTORS](#important-note-to-all-contributors)
26
+
-[IMPORTANT NOTE TO ALL CONTRIBUTORS](#important-note-to-all-contributors)
27
27
-[Features](#features)
28
28
-[Local Development (Docker)](#local-development-docker)
29
29
-[Prerequisites](#prerequisites)
@@ -104,30 +104,32 @@ npm run build:frontend
104
104
105
105
Run the following shell commands to build the Docker image. The first time will usually take 10 or so minutes. These commands runs the backend services specified under [docker-compose.yml](docker-compose.yml) and the React frontend on the native host.
106
106
107
-
This command runs:
107
+
This command runs:
108
+
108
109
- backend server
109
110
- frontend server
110
-
- emulated serverless ClamAV (legacy) virus scanner function
111
-
- emulated serverless GuardDuty virus scanner function
112
-
- emulated serverless pdf generation function
111
+
- emulated serverless ClamAV (legacy) virus scanner function
112
+
- emulated serverless GuardDuty virus scanner function
113
+
- emulated serverless pdf generation function
113
114
114
115
```bash
115
116
npm run dev
116
117
```
117
118
118
-
Alternatively, you can run required components independently - which is what the main dev team usually does:
119
+
Alternatively, you can run required components independently - which is what the main dev team usually does:
120
+
119
121
```bash
120
-
# Frontend server
122
+
# Frontend server
121
123
npm run dev:frontend (frontend react server, compulsory)
122
124
123
-
# Backend server
124
-
docker compose up
125
+
# Backend server
126
+
docker compose up
125
127
126
-
# PDF generation function (only needed if you're using features requiring PDF generation, eg, payment invoice/auto-reply PDF)
127
-
npm run dev:pdf-gen
128
+
# PDF generation function (only needed if you're using features requiring PDF generation, eg, payment invoice/auto-reply PDF)
129
+
npm run dev:pdf-gen
128
130
129
131
# Virus scanners - run both (only needed if you're uploading attachments)
Copy file name to clipboardExpand all lines: frontend/src/i18n/locales/features/admin-form/settings/webhooks/en-sg.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ export const enSG = {
3
3
input: {
4
4
label: 'Endpoint URL',
5
5
description:
6
-
'FormSG will POST encrypted form responses in real-time to the HTTPS endpoint specified here. Ensure that your external system can support the classification and sensitivity.',
6
+
'FormSG will POST the entire encrypted form response in real-time to the HTTPS endpoint specified. Ensure that the external system can support the classification and sensitivity.',
0 commit comments