A simple dashboard for FlashForge Finder printers. Uses a flask backend api to communicate with the printers.
-
Make sure you have the Backend running first.
-
Set the backend URL in the .env file or create a .env.local file.
-
Add your printers to the index.js file:
<Printer ip_address='192.168.1.134' name='Fiona'/>
. -
If you have a camera server you can add a socket as a parameter to
<Printer ip_address='192.168.1.134' camera_ws_url='ws://192.168.1.199:8000/websocket' name='Fiona'/>
.This camera server was used during development: https://github.com/patrickfuller/camp
-
Install the node modules:
npm install
-
Start the development server:
npm start