Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hotwax/napita-flow-manager
The Napita flow manager app
https://github.com/hotwax/napita-flow-manager
Last synced: 6 days ago
JSON representation
The Napita flow manager app
- Host: GitHub
- URL: https://github.com/hotwax/napita-flow-manager
- Owner: hotwax
- License: apache-2.0
- Created: 2024-03-12T11:14:25.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-04-26T05:48:29.000Z (7 months ago)
- Last Synced: 2024-04-26T06:37:53.263Z (7 months ago)
- Language: TypeScript
- Size: 1.89 MB
- Stars: 1
- Watchers: 10
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# napita-flow-manager for Ionic 5.x/ Vue applications
## How to use?
- Clone your repository
`git clone https://github.com/hotwax/napita-flow-manager.git`- Create a new branch
- Add napita-flow-manager repo URL to remote
`git remote add napita-flow-manager https://github.com/hotwax/napita-flow-manager.git`- Fetch napita-flow-manager branches
`git fetch napita-flow-manager`- Merge napita-flow-manager master to your branch with [--allow-unrelated-histories](https://git-scm.com/docs/git-merge#Documentation/git-merge.txt---allow-unrelated-histories) flag
`git merge napita-flow-manager/main --allow-unrelated-histories`- Resolve conflicts
- Push your branch and create a PR# Prerequisite
Ionic CLI - If you don't have the ionic CLI installed refer [official documentation](https://ionicframework.com/docs/intro/cli) for the installation instructions.# Build Notes (Users)
1. Download the app from [release](https://github.com/hotwax/napita-flow-manager/releases) page and extract it.
2. Go to the app directory.
3. Run following command to download dependencies
`npm i`
4. Create a `.env` file by taking reference from the `.env.example`.
5. To run the app in browser use the command: `ionic serve`# Build Notes (Contributors)
1. Open a Terminal window
2. Clone app using the command: `git clone https://github.com/hotwax/napita-flow-manager.git `
3. Go to the directory using command: `cd `
4. Run following command to download dependencies
`npm i`
5. Create a `.env` file by taking reference from the `.env.example`.
6. To run the app in browser use the command: `ionic serve`# Firebase Hosting
We are using firebase hosting for the Napita flow manager app deployment
Here are the steps to deploy app on firebase hosting## Prerequisite
- [Firebase Cli](https://firebase.google.com/docs/cli) should be installed
- Firebase project should be created
- You should have access to firebase project## Dev deployment
- Update the DEV instance url at .env.production file
- Build the application using following command
`ionic build`- Login into firebase
`firebase login`- Run following command to deploy to firebase hosting
`firebase deploy --only hosting:`## How to build application in different environment or modes(staging, production, qa, etc)?
As there is a bug in Ionic cli due to which we cannot pass flag variables for commands (See [#4669](https://github.com/ionic-team/ionic-cli/issues/4642)). To build application in different modes we need to use vue-cli-service to build and then use the built app using capacitor copy command further.
Follow following instructions:
1. Manually build the application using vue-cli-service:
npx vue-cli-service build --mode=sandbox2. Copy web assets to the native project without building the app:
ionic capacitor copy ios --no-build3. Open the Android Studio / XCode project:
ionic capacitor open android
ionic capacitor open ios# Contribution Guideline
1. Fork the repository and clone it locally from the `main` branch. Before starting your work make sure it's up to date with current `main` branch.
2. Pick an issue from [here](https://github.com/hotwax/napita-flow-manager/issues). Write in the issue comment that you want to pick it, if you can't assign yourself. **Please stay assigned to one issue at a time to not block others**.
3. Create a branch for your edits. Use the following branch naming conventions: **napita-flow-manager/issue-number**.
4. Please add issue number to your commit message.
5. Propose a Pull Request to `main` branch containing issue number and issue title.
6. Use [Pull Request template](https://github.com/hotwax/napita-flow-manager/blob/main/.github/PULL_REQUEST_TEMPLATE.md) (it's automatically added to each PR) and fill as much fields as possible to describe your solution.
7. Reference any relevant issues or other information in your PR.
8. Wait for review and adjust your PR according to it.
9. Congrats! Your PR should now me merged in!If you can't handle some parts of the issue then please ask for help in the comment. If you have any problems during the implementation of some complex issue, feel free to implement just a part of it.
## Report a bug or request a feature
Always define the type of issue:
* Bug report
* Feature requestWhile writing issues, please be as specific as possible. All requests regarding support with implementation or application setup should be sent to.
# UI / UX Resources
You may find some useful resources for improving the UI / UX of the app here.# Join the community on Discord
If you have any questions or ideas feel free to join our Discord channel
# The licenseNapita flow manager app is completely free and released under the Apache v2.0 License. Check LICENSE for more details.