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
* Create (if not already created) and/or Activate project environment
34
+
32
35
```bash
33
-
$ virtualenv -p python3 venv
34
-
$ source venv/bin/activate
36
+
virtualenv -p python3 venv
37
+
source venv/bin/activate
35
38
```
36
39
37
40
* Install/update project dependencies
41
+
38
42
```bash
39
-
(venv) app$ pip install -r requirements.txt
43
+
cd server/app
44
+
pip install -r requirements.txt
40
45
```
41
46
42
47
## Execution (Development Only)
43
48
44
49
### Set up Environment Variables
45
-
We are using 2 test accounts in this demo app. One is on Production, the other is on Sandbox. All services, except Visa Checkout can be tested on Production. Visa Checkout mist be tested on Sandbox.
50
+
51
+
We are using 2 test accounts in this demo app. One is on Production, the other is on Sandbox. All services,
52
+
except Visa Checkout can be tested on Production. Visa Checkout mist be tested on Sandbox.
46
53
47
54
#### Mac/Linux
55
+
48
56
```bash
49
-
(venv) app$ export SERVER_URL_BASE="https://api.na.bambora.com"# Defaults to this and can be omitted
50
-
(venv) app$ export DATABASE_URL=sqlite:////tmp/mobilepay-demo.db # Defaults to this and can be omitted
0 commit comments