You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First off, thank you for considering contributing to the Mifos Gazelle Demo Runtime! It's people like you that make the open-source community such a great place. We welcome any form of contribution, from reporting bugs and requesting features to submitting code changes.
4
+
5
+
Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open-source project. In return, they should reciprocate that respect in addressing your issue, assessing changes, and helping you finalize your pull requests.
6
+
7
+
## How Can I Contribute?
8
+
9
+
### Reporting Bugs
10
+
11
+
This is one of the most helpful ways to contribute. If you find a bug, please ensure the bug was not already reported by searching on jira under [gax-27](<[https://github.com/openMF/mifos-gazelle-demo-runtime/issues](https://mifosforge.jira.com/browse/GAZ-27)>).
12
+
13
+
If you're unable to find an open issue addressing the problem, [open a new ticket](https://mifosforge.jira.com/browse/GAZ-27). Be sure to include a **title and clear description**, as much relevant information as possible, and a **code sample or an executable test case** demonstrating the expected behavior that is not occurring.
14
+
15
+
### Suggesting Enhancements
16
+
17
+
If you have an idea for an enhancement or a new feature, please open an issue to discuss it. This allows us to coordinate our efforts and prevent duplication of work.
18
+
19
+
When creating an enhancement suggestion, please:
20
+
21
+
-**Use a clear and descriptive title** to identify the suggestion.
22
+
-**Provide a step-by-step description of the suggested enhancement** in as many details as possible.
23
+
-**Explain why this enhancement would be useful** to most users.
24
+
25
+
### Pull Requests
26
+
27
+
The process described here has several goals:
28
+
29
+
- Maintain project quality
30
+
- Fix problems that are important to users
31
+
- Engage the community in working toward the best possible solution
32
+
- Enable a sustainable system for maintainers to review contributions
3. **Create a feature branch**for your local development:
42
+
```sh
43
+
git checkout -b name-of-your-bugfix-or-feature
44
+
```
45
+
Now you can make your changes locally.
46
+
4. **Commit your changes** using a descriptive commit message:
47
+
```sh
48
+
git commit -m "feat: Add some feature"
49
+
```
50
+
5. **Push your branch** to your fork on GitHub:
51
+
```sh
52
+
git push origin name-of-your-bugfix-or-feature
53
+
```
54
+
6. **Open a Pull Request** from your fork to the original `main` branch. Provide a clear title and description for your pull request, explaining the "what" and "why" of your changes.
This repo contains the runtime environment for Mifo Gazelle Demos. This is currently WIP.
5
+
The Mifos Gazelle Demo Runtime is an open-source, web-based tool designed to perform interactive demos using Gazelle-deployed Digital Public Goods (DPGs). It provides an intuitive and user-friendly interface to showcase complex functionalities and workflows in a step-by-step manner.
6
6
7
-
branch main - is release/stable code
7
+
Demos are created using the companion tool, [Mifos Gazelle Demo Creator](https://github.com/openMF/mifos-gazelle-demo-creator), and are stored in a jFrog repository.
8
8
9
-
branch dev - is current development branch
9
+
The Demo Runtime UI allows users to navigate to their desired demo. The interface is split into two panels:
10
10
11
-
All PR's must be to dev. dev-->Main will be undertaken at release points
11
+
-**Left Panel:** Displays a clear, step-by-step explanation of the demo, guiding the user through the process.
12
+
-**Right Panel:** Renders the live, deployed DPGs within iframes, allowing for direct and interactive engagement.
13
+
14
+
This side-by-side layout makes it incredibly easy to follow complex flows, as users can read the instructions and perform the actions in the live application simultaneously. Navigation between steps and different DPGs is seamless, making it the most intuitive way to understand the system's capabilities.
15
+
16
+
## Features
17
+
18
+
-**Interactive Live Demos:** Engage directly with deployed DPGs in real-time.
19
+
-**Side-by-Side View:** Follow guided steps on one side while interacting with the application on the other.
20
+
-**Step-by-Step Guidance:** Break down complex workflows into easy-to-understand steps.
21
+
-**Seamless Navigation:** Effortlessly move between different stages of a demo and between different DPGs.
22
+
-**Centralized Demo Repository:** Loads demos created with the Demo Creator from a centralized jFrog repository.
23
+
24
+
## Getting Started
25
+
26
+
Follow these instructions to get a copy of the project up and running on your local machine for development and testing purposes.
27
+
28
+
### Prerequisites
29
+
30
+
Make sure you have the following software installed on your system:
31
+
32
+
-[Node.js](https://nodejs.org/) (which includes npm)
33
+
-[Git](https://git-scm.com/)
34
+
35
+
### Installation Guide
36
+
37
+
1.**Clone the repository:**
38
+
Open your terminal and run the following command to clone the project:
Open your web browser and navigate to `http://localhost:3000` to see the application in action.
78
+
79
+
## Related Links
80
+
81
+
- **Jira Story:** [GAZ-27](https://mifosforge.jira.com/browse/GAZ-27) - The original story for this project.
82
+
- **Demo Creator Tool:** [Mifos Gazelle Demo Creator](https://github.com/openMF/mifos-gazelle-demo-creator) - The tool used to create the demos that this runtime consumes.
83
+
84
+
## Contributing
85
+
86
+
Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.
87
+
88
+
Please see the `CONTRIBUTING.md` file for details on our code of conduct, and the process for submitting pull requests to us.
89
+
90
+
## License
91
+
92
+
This project is licensed under the Mozilla Public License Version 2.0
0 commit comments