47 have to enter the keychain password every time Borgend is launched, it is |
47 have to enter the keychain password every time Borgend is launched, it is |
48 useful to create a standalone Mac app. This can be done with |
48 useful to create a standalone Mac app. This can be done with |
49 |
49 |
50 - [py2app](https://py2app.readthedocs.io/en/latest/install.html). |
50 - [py2app](https://py2app.readthedocs.io/en/latest/install.html). |
51 |
51 |
52 To create the standalone app |
52 To create an app that you can launch at startup and give permanent permissions |
|
53 to the keychain, use |
53 |
54 |
54 python3 setup.py py2app |
55 python3 setup.py py2app -A |
55 |
56 |
56 The app hould be placed under `dist/`. Copy it to your `Applications` |
57 The app hould be placed under `dist/`. Copy it to your `Applications` |
57 directory, and set it up to launch on login. |
58 directory, and set it up to launch on login. |
|
59 |
|
60 If you are keen on wasting your life, you can try to run py2app without `-A` |
|
61 option to create a standalone app that you can copy to computers without |
|
62 Python installed, but it will probably most likely not work because py2app |
|
63 is shit. Currently (2018-09-18) it is not working with the keyring package. |
58 |
64 |
59 |
65 |
60 ## Usage and configuration |
66 ## Usage and configuration |
61 |
67 |
62 ### Configuration file |
68 ### Configuration file |