An application to make page in browser
Follow these instructions to set up and run the project on your local machine. Installation
Clone the repository:
git clone https://github.com/qwegod/webcode.git
cd webcode
Install dependencies for both frontend and backend:
# For frontend
cd frontend
npm install
# For backend
cd ../backend
npm install
Running the Frontend
To start the frontend React application:
Navigate to the frontend directory:
cd frontend
Run the following command:
npm start
This command starts the frontend server at http://localhost:3000. Running the Backend
The backend server is required only if you need to export functionality with images. If this feature is not needed, you can skip this section.
To start the backend:
Navigate to the backend directory:
cd backend
Run the following command:
npm run start
This command starts the backend server at http://localhost:5000. Usage
Start the frontend server to interact with the application.
If you need to use the image export functionality, start the backend server as well.
Additional Scripts
Frontend:
npm start – Starts the frontend server.
Backend:
npm run start – Starts the backend server.