mirror of
https://github.com/RoboSats/robosats-startos.git
synced 2026-01-28 05:35:40 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e0c5ca2546 | |||
| f5769c6f17 | |||
| bf4f47850d | |||
| 4d1e7d76e8 |
@ -1,4 +1,4 @@
|
|||||||
FROM recksato/robosats-client:v0.4.1-alpha
|
FROM recksato/robosats-client:v0.5.0-alpha
|
||||||
RUN apt-get update && apt-get install wget curl sudo bash tini -y
|
RUN apt-get update && apt-get install wget curl sudo bash tini -y
|
||||||
RUN wget https://github.com/mikefarah/yq/releases/download/v4.6.3/yq_linux_amd64.tar.gz -O - |\
|
RUN wget https://github.com/mikefarah/yq/releases/download/v4.6.3/yq_linux_amd64.tar.gz -O - |\
|
||||||
tar xz && mv yq_linux_amd64 /usr/bin/yq
|
tar xz && mv yq_linux_amd64 /usr/bin/yq
|
||||||
|
|||||||
@ -31,11 +31,12 @@ docker run --privileged --rm linuxkit/binfmt:v0.8
|
|||||||
```
|
```
|
||||||
4. Install yq
|
4. Install yq
|
||||||
```
|
```
|
||||||
sudo snap install yq
|
wget https://github.com/mikefarah/yq/releases/download/${VERSION}/${BINARY}.tar.gz -O - |\
|
||||||
|
tar xz && mv ${BINARY} /usr/bin/yq
|
||||||
```
|
```
|
||||||
5. Install deno
|
5. Install deno
|
||||||
```
|
```
|
||||||
sudo snap install deno
|
cargo install deno
|
||||||
```
|
```
|
||||||
6. Install essentials build packages
|
6. Install essentials build packages
|
||||||
```
|
```
|
||||||
|
|||||||
@ -1,13 +1,15 @@
|
|||||||
id: robosats
|
id: robosats
|
||||||
title: "RoboSats"
|
title: "RoboSats"
|
||||||
version: 0.4.1.1
|
version: 0.5.0
|
||||||
release-notes: |
|
release-notes: |
|
||||||
* Updated to v0.4.1-alpha [Release Notes](https://github.com/Reckless-Satoshi/robosats/releases/tag/v0.4.1-alpha)
|
* Updated to v0.5.0-alpha [Release Notes](https://github.com/Reckless-Satoshi/robosats/releases/tag/v0.5.0-alpha)
|
||||||
|
* Updated build instructions in README
|
||||||
license: mit
|
license: mit
|
||||||
wrapper-repo: "https://github.com/kn0wmad/robosats-wrapper"
|
wrapper-repo: "https://github.com/kn0wmad/robosats-wrapper"
|
||||||
upstream-repo: "https://github.com/Reckless-Satoshi/robosats"
|
upstream-repo: "https://github.com/Reckless-Satoshi/robosats"
|
||||||
support-site: "https://github.com/Reckless-Satoshi/robosats/issues"
|
support-site: "https://github.com/Reckless-Satoshi/robosats/issues"
|
||||||
marketing-site: "https://learn.robosats.com/"
|
marketing-site: "https://learn.robosats.com/"
|
||||||
|
donation-url: "https://learn.robosats.com/contribute/donate/"
|
||||||
# The series of commands to build the project into an s9pk for arm64/v8. In this case we are using a Makefile with the simple build command "make".
|
# The series of commands to build the project into an s9pk for arm64/v8. In this case we are using a Makefile with the simple build command "make".
|
||||||
build: ["make"]
|
build: ["make"]
|
||||||
# Human readable descriptors for the service. These are used throughout the EmbassyOS user interface, primarily in the marketplace.
|
# Human readable descriptors for the service. These are used throughout the EmbassyOS user interface, primarily in the marketplace.
|
||||||
|
|||||||
8
prepare.sh
Executable file
8
prepare.sh
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# install yq
|
||||||
|
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq &&\
|
||||||
|
chmod +x /usr/bin/yq
|
||||||
|
|
||||||
|
# install deno
|
||||||
|
cargo install deno
|
||||||
@ -1,4 +1,4 @@
|
|||||||
import { compat, types as T } from "../deps.ts";
|
import { compat, types as T } from "../deps.ts";
|
||||||
|
|
||||||
export const migration: T.ExpectedExports.migration = compat.migrations
|
export const migration: T.ExpectedExports.migration = compat.migrations
|
||||||
.fromMapping({}, "0.4.1.1" );
|
.fromMapping({}, "0.5.0" );
|
||||||
|
|||||||
Reference in New Issue
Block a user