https://github.com/n8tbyte/his-nextjs-internship-react
Hospital Information System (Web Application)
https://github.com/n8tbyte/his-nextjs-internship-react
Last synced: 5 days ago
JSON representation
Hospital Information System (Web Application)
- Host: GitHub
- URL: https://github.com/n8tbyte/his-nextjs-internship-react
- Owner: n8tbyte
- Created: 2019-04-27T16:14:51.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-03-31T18:32:13.000Z (about 6 years ago)
- Last Synced: 2026-02-27T21:35:15.769Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 39.7 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HIS
## Getting Started
```
npm install && npm run dev
```
```
http://localhost:3000
```
or
```
docker build -t react-docker-app .
docker run -d -p 3000:3000 --restart=always react-docker-app
```
Stop and remove all containers
```
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
```
Remove all images
```
docker rmi $(docker images -a -q)
```