update frontend README.md

This commit is contained in:
agatha 2024-04-09 17:47:09 -04:00
parent b0027575b6
commit 82bd76618c

View File

@ -1,4 +1,19 @@
# Forum Frontend
Should be extremely simple to start with no styling.
Node.js with a nice framework should be the ultimate goal, but could just do simple HTML and JS by hand for now.
## Development
To start the frontend in development mode and serve on http://localhost:3000:
```shell
npm run start
```
## Production
```shell
# Install serve
npm install -g serve
# Build for production
npm run build
# Serve
serve -s --no-clipboard build
```