Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lilmonk/erpnext-healthcare
Frappe erpnext with healthcare module.
https://github.com/lilmonk/erpnext-healthcare
frappe frappe-erpnext frappe-framework
Last synced: 17 days ago
JSON representation
Frappe erpnext with healthcare module.
- Host: GitHub
- URL: https://github.com/lilmonk/erpnext-healthcare
- Owner: LilMonk
- Created: 2024-12-04T11:20:12.000Z (30 days ago)
- Default Branch: main
- Last Pushed: 2024-12-04T11:33:57.000Z (30 days ago)
- Last Synced: 2024-12-15T14:02:21.752Z (18 days ago)
- Topics: frappe, frappe-erpnext, frappe-framework
- Language: Dockerfile
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Frappee ERPNext Healthcare
This repository contains the docker setup for frappee erpnext healthcare.
## Setup instructions with custom docker image
1. Add apps in apps.json file. Make changes to `.env` files if needed. Change the `FRAPPE_SITE_NAME_HEADER` in the `.env` file with your site name.
2. Build custom docker image
```bash
make build
```3. Start docker containers
```bash
make up
```4. Close docker containers
```bash
make down
```## Setup instructions
This is to be done with vanilla frappee erpnext image. But with the given docker setup,
we don't need this. This part is just for reference.1. Start docker containers
```bash
cd frappee_docker
docker compose -f pwd.yml up -d
```2. Get inside backend container
```bash
docker exec -it backend bash
```3. Install healtcare model
```bash
bench get-app healthcare --branch version-15
bench --site install-app healthcare
bench migrate
```
Do this for all the containers that uses frappee erpnext healthcare image.