2024-03-27 13:37:31 +01:00
[](http://kotlinlang.org)
2024-03-21 15:13:53 +01:00
[](LICENSE)
[](https://phoenix.acinq.co/server)
[](https://phoenix.acinq.co/server/api)
# phoenixd
**phoenixd** is the server equivalent of the popular [phoenix wallet ](https://github.com/ACINQ/phoenix ) for mobile.
It is written in [Kotlin Multiplatform ](https://kotlinlang.org/docs/multiplatform.html ) and runs natively on Linux, MacOS (x86 and ARM), and Windows (WSL).
## Build
2024-03-25 17:52:09 +01:00
### Native Linux/WSL
Requires `libsqlite-dev` and `libcurl4-gnutls-dev` , both compiled against `glibc 2.19` .
2024-03-21 15:13:53 +01:00
```shell
./gradlew packageLinuxX64
```
2024-03-25 17:52:09 +01:00
### Native MacOS x64
2024-03-21 15:13:53 +01:00
```shell
./gradlew packageMacOSX64
```
2024-03-25 17:52:09 +01:00
### Native MacOS arm64
2024-03-21 15:13:53 +01:00
```shell
./gradlew packageMacOSArm64
```
2024-03-25 17:52:09 +01:00
### JVM
```shell
./gradlew distZip
```