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: docs/developer_guide.md
+5-10
Original file line number
Diff line number
Diff line change
@@ -42,23 +42,18 @@ These are some resources to learn languages and libraries used in ATIP. Feel fre
42
42
43
43
## Installation
44
44
45
-
To run locally you'll need:
46
-
[npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) and
47
-
[wasm-pack](https://github.com/rustwasm/wasm-pack) ([quick-start](https://rustwasm.github.io/wasm-pack/book/quickstart.html)). Wasm pack depends on [Rust](https://www.rust-lang.org/tools/install) and gcc. Rust is covered in the wasm quick start guide but gcc can be installed using `apt install build-essential` for Ubuntu, at least.
45
+
To run locally you'll need [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm).
48
46
49
47
-`npm install` to install dependencies
50
-
-`npm run wasm` to rebuild the `route_info` Rust library quickly (or
51
-
`wasm-release` to build slowly but run quickly)
52
-
- If you're modifying the Rust code, a handy command is `npm run wasm && npm run dev`
53
48
-`npm run generate-schema-ts` to rebuild TS definitions from changes to `src/schemas/*.json`
54
49
-`npm run setup-govuk` to rerun Sass and generate GOV.UK styles
55
50
-`npm run dev` to run ATIP locally (N.B. you need to run all the above commands before running this command)
56
51
- To mimic GCP deployment and see private layers locally, follow instructions in `.env` and run `VITE_RESOURCE_BASE="" VITE_MIMIC_GCP_LOCALLY="true" npm run dev`
57
52
-`npm run fmt` to auto-format code
58
53
-`npm run check` to see TypeScript errors
59
54
60
-
Upon first setup, you'll need to `npm run wasm`, `npm run generate-schema-ts`,
61
-
`npm run setup-govuk` to get all mandatory files for running.
55
+
Upon first setup, you'll need to `npm run generate-schema-ts` and `npm run
56
+
setup-govuk` to get all mandatory files for running.
62
57
63
58
If you're using Firefox locally to develop and get "import declarations may
64
59
only appear at top level" errors, upgrade to at least Firefox 112, go to
@@ -75,9 +70,9 @@ Once you've installed these you can:
75
70
76
71
1. Open VSCode
77
72
2. Press F1 to open input command at top of window
78
-
3.Run `Dev Containers: Open Folder in Container`, and select the `atip` folder
73
+
3. Run `Dev Containers: Open Folder in Container`, and select the `atip` folder
79
74
4. Press the plus on the top right of the terminal subwindow at the bottom of VSCode (by default) to open a terminal in your docker container
80
-
5. Run `npm install`, `npm run wasm`, then `npm run dev`and you should have ATIP running on your docker image, VS Code should prompt you with a link to open it in your browser
75
+
5. Run `npm install`, `npm run dev`, and then you should have ATIP running on your docker image. VS Code should prompt you with a link to open it in your browser.
0 commit comments