An open API service indexing awesome lists of open source software.

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)

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)
```