Welcome to the Medibyte prototype project! This guide will help you set up and install the project locally on your system. Please follow the steps below carefully to get started.
Make sure you have the following installed on your system:
- Go to the Medibyte GitHub repository.
- Click the "Fork" button on the top right corner of the page. This will create a copy of the repository under your GitHub account.
- If possible, give a star to the project to show your support!
-
Navigate to your forked repository on GitHub.
-
Click the "Code" button and copy the HTTPS URL.
-
Open your terminal and run the following command to clone the repository: bash git clone <HTTPS_URL>
Replace <HTTPS_URL> with the URL you copied in the previous step.
Navigate to the Medibyte project directory by running: bash cd Medibyte
If you're using Visual Studio Code, you can open the project by running: bash code .
Navigate to the client directory where the frontend code resides: bash cd client
Install the necessary dependencies for the project by running: bash npm install
Start the development server by running: bash npm run dev
Once the server starts, you will see an output similar to:
VITE v5.2.0 ready in 123 ms
➜ Local: http://localhost:5173/ ➜ Network: use --host to expose ➜ press h to show help
Open your web browser and navigate to http://localhost:5173/. You should now see the Medibyte prototype running locally on your machine.
-
Build: To build the project for production, run: bash npm run build
-
Preview: To preview the production build, run: bash npm run preview
-
Lint: To lint the code, run: bash npm run lint
We welcome contributions! Please refer to our Contributing Guide for more details on how you can contribute to the project.
Thank you for setting up the Medibyte prototype. If you encounter any issues or have any questions, feel free to open an issue on the repository. Happy coding!