1# entomoviscera.online 2 3My personal website. 4 5# Setup 6 7Required: 8 9- `NodeJS` v24 or later 10- `npm` 11- `git` 12 13```sh 14git clone https://tangled.org/@entomoviscera.online/personal-site entomoviscera.online 15cd entomoviscera.online 16npm install 17``` 18 19## Developing 20 21Runs on <http://localhost:3000/>. 22For development help refer to <https://docs.astro.build>. 23 24```sh 25npm run dev 26``` 27 28## Building 29 30Builds into `./dist`: 31 32```sh 33npm run build 34``` 35 36For testing the build: 37 38```sh 39npm run preview 40```