Process
Step-by-step installation guide
Installation
Fork the repository to your local machine.
Navigate to the project directory react-annotation-interface.
Run the following command in the terminal to install the dependencies:
npm installStarting a Development Server
npm run devCreate a Production Build
npm run buildDeploy the Production Build
serve -s dist -l 5050If necessary, replace 5050 with the port you want to serve the production build from.
Set up the backend
Go over to the backend repo and follow the installation guide there. Back in the frontend folder, navigate to or create your .env file, and add the following line:
If necessary, replace 8050 with the port in which you are running the backend on your local machine.
Last updated