Transfers App
- Node
v22.12.0or higher pnpm
This app is developed and run from the accxui pnpm workspace. It is not started by running commands inside this app folder directly.
- Open a Terminal window.
- Clone the workspace using the command:
git clone https://github.com/hotwax/accxui.git - Go to the workspace root using command:
cd accxui - Download the app from the release page, extract it, and place it at
apps/transfers. - Create a
.envfile inapps/transfersby taking reference from its.env.example. - Run following command from the
accxuiroot to download dependencies
pnpm install - To run the app in browser use the command from the
accxuiroot:
pnpm --filter transfers dev
- Open a Terminal window.
- Clone the workspace using the command:
git clone https://github.com/hotwax/accxui.git - Go to the workspace root using command:
cd accxui - Clone this app under
apps/using the command:
git clone https://github.com/hotwax/transfers.git apps/transfers - Create a
.envfile inapps/transfersby taking reference from its.env.example. - Run following command from the
accxuiroot to download dependencies
pnpm install - To run the app in browser use the command from the
accxuiroot:
pnpm --filter transfers dev - To build the app use the command from the
accxuiroot:
pnpm --filter transfers build
Run pnpm install from the accxui root again whenever you add another app under apps/. See the accxui README for the full workspace guide.
We are using firebase hosting for the Transfers app deployment Here are the steps to deploy app on firebase hosting
- Firebase Cli should be installed
- Firebase project should be created
- You should have access to firebase project
-
Generate .env file from .env.example
-
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:transfersfirebase deploy --only hosting:transfers-dev
As there is a bug in Ionic cli due to which we cannot pass flag variables for commands (See #4669). 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:
-
Manually build the application using vue-cli-service: npx vue-cli-service build --mode=sandbox
-
Copy web assets to the native project without building the app: ionic capacitor copy ios --no-build
-
Open the Android Studio / XCode project: ionic capacitor open android
ionic capacitor open ios
- Fork the repository and clone it locally from the
mainbranch. Before starting your work make sure it's up to date with currentmainbranch. - Pick an issue from here. 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.
- Create a branch for your edits. Use the following branch naming conventions: transfers/issue-number.
- Please add issue number to your commit message.
- Propose a Pull Request to
mainbranch containing issue number and issue title. - Use Pull Request template (it's automatically added to each PR) and fill as much fields as possible to describe your solution.
- Reference any relevant issues or other information in your PR.
- Wait for review and adjust your PR according to it.
- Congrats! Your PR should now be 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.
Always define the type of issue:
- Bug report
- Feature request
While writing issues, please be as specific as possible. All requests regarding support with implementation or application setup should be sent to.
You may find some useful resources for improving the UI / UX of the app here.
If you have any questions or ideas feel free to join our Discord channel
Transfers app is completely free and released under the Apache v2.0 License. Check LICENSE for more details.