978 B
978 B
Windows Client Only Setup with Reverse Proxy
This guide covers setting up a frontend-only development environment on Windows with a reverse proxy to connect to a remote backend.
Requirements
- NodeJS: 22.14+
- Git
- Docker
Installation
-
Open your console on the root of the project and check if Node.js 22.14+ is installed:
node --version
If not installed or version is older, follow the Node.js installation instructions
-
Clone the repository (if you haven't already)
-
To setup the configuration, navigate to the client directory and install the necessary packages run the following:
cp config.example.production.json config.json cd client npm i
-
Finally to run the development server run:
npm run dev
-
Access the application at: http://localhost:5000/
-
Make sure the images and api calls are being reverse proxied.