mirror of
https://bitbucket.org/tagfer_team/tagfer-app.git
synced 2025-12-25 11:47:43 +00:00
21 lines
464 B
Markdown
21 lines
464 B
Markdown
# Tagfer Mobile App
|
|
|
|
## Setup
|
|
To run the app locally please do the following:
|
|
|
|
```bash
|
|
git clone https://bitbucket.org/tagfer_team/tagfer-app.git
|
|
cd tagfer-app
|
|
npm install
|
|
react-native link
|
|
react-native run-ios # For iOS
|
|
react-native run-andorid # For Android
|
|
```
|
|
|
|
Also, you need to have the `tagfer-server` running to process the app's requests.
|
|
```bash
|
|
git clone https://bitbucket.org/tagfer_team/tagfer-server.git
|
|
cd tagfer-server
|
|
npm install
|
|
node server.js
|
|
``` |