Installation (Development)
If you wish to contribute to Panoptic by modifying the code or developing plugins, you will need to be able to run Panoptic in development mode.
Start by cloning the repository with:
git clone https://github.com/CERES-Sorbonne/Panoptic.git
Backend Development Only
To test and modify the backend functionality, we provide an already built front-end in the backend's html folder:
- go to the
panoptic-backfolder - to install dependencies:
pip install -e . - launch:
panoptic
Front-end and Back-end Development
- first, complete the backend installation steps
- go to the
panoptic-frontfolder - run
npm install - run
npm run dev - before launching the backend, the
PANOPTIC_ENVenvironment variable must be set toDEVto use the development frontend.