Minor changes while trying to get this running again -- which it very nearly does.

This commit is contained in:
Simon Brooke 2026-08-22 14:35:00 +01:00
parent f93a0e854a
commit ac894f2a42
3 changed files with 7 additions and 9 deletions

View file

@ -46,8 +46,10 @@ Consequently, to get a build running:
2. within your cloned repository, check out a branch (usually `develop` or `master`);
3. if you have previously built the project within your cloned repository, run `lein clean`;
4. **this is the important bit** run `lein adl` to generate much of the application code;
5. run `lein run` to start your development server;
6. if you want to do client debugging, you'll want to run `figwheel` in a separate process, but also from the same cloned repository directory; I normally do this by opening a second terminal and invoking `lein figwheel`.
5. run `lein npm install`;
6. run `lein cljs once`;
7. run `lein run` to start your development server;
8. if you want to do client debugging, you'll want to run `figwheel` in a separate process, but also from the same cloned repository directory; I normally do this by opening a second terminal and invoking `lein figwheel`.
## Further Reading