-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b48625d
commit 8f6baa1
Showing
1 changed file
with
28 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,32 @@ | ||
# Three.js Journey | ||
# Hospital Front Project | ||
|
||
## Setup | ||
Download [Node.js](https://nodejs.org/en/download/). | ||
Run this followed commands: | ||
This project was made for the [Diabetes Prediction project](https://github.com/amjadAwad95/diabetes-prediction). | ||
|
||
## Overview | ||
|
||
The "Hospital" repository provides the frontend for the project mentioned before. | ||
|
||
``` bash | ||
# Install dependencies (only the first time) | ||
npm install | ||
## Dependencies | ||
|
||
- **Three.js**: A 3D graphics library for creating interactive 3D scenes and rendering in the browser. | ||
- **Bootstrap**: A responsive front-end framework for creating modern, mobile-first websites. | ||
- **Bootstrap Icons**: Provides a set of icons for use with Bootstrap. | ||
- **GSAP**: A high-performance animation library for smooth transitions and interactive animations. | ||
- **Lil-gui**: A lightweight GUI for real-time adjustment of variables in web applications. | ||
- **Vercel**: A deployment platform for serverless functions and continuous deployment. | ||
|
||
## Setup | ||
|
||
# Run the local server at localhost:8080 | ||
npm run dev | ||
1. Clone the repository: | ||
```bash | ||
git clone https://github.com/Ahmadiyrot/Hospital.git | ||
``` | ||
2. Install dependencies: | ||
```bash | ||
npm install | ||
``` | ||
3. Start the server: | ||
```bash | ||
npm start | ||
``` | ||
|
||
# Build for production in the dist/ directory | ||
npm run build | ||
``` |