mirror of
https://github.com/onsonr/motr.git
synced 2025-03-10 17:29:10 +00:00
feat: add devbox configuration for development environment
This commit is contained in:
parent
3d110529c1
commit
f77cd022bb
6
.gitignore
vendored
Normal file
6
.gitignore
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
.DS_Store
|
||||||
|
.aider*
|
||||||
|
.vscode
|
||||||
|
.idea
|
||||||
|
bin
|
||||||
|
tmp
|
3
Makefile
3
Makefile
@ -17,7 +17,8 @@ deps:
|
|||||||
go install github.com/go-task/task/v3/cmd/task@latest
|
go install github.com/go-task/task/v3/cmd/task@latest
|
||||||
|
|
||||||
build: go.sum
|
build: go.sum
|
||||||
GOOS=js GOARCH=wasm go build -o build/app.wasm .
|
GOOS=js GOARCH=wasm go build -o build/app.wasm main.go
|
||||||
|
|
||||||
########################################
|
########################################
|
||||||
### Tools & dependencies
|
### Tools & dependencies
|
||||||
########################################
|
########################################
|
||||||
|
5
deploy/bootstrap.sh
Executable file
5
deploy/bootstrap.sh
Executable file
@ -0,0 +1,5 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
|
24
deploy/devbox.json
Normal file
24
deploy/devbox.json
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.13.7/.schema/devbox.schema.json",
|
||||||
|
"packages": [
|
||||||
|
"go@latest",
|
||||||
|
"cargo@latest",
|
||||||
|
"uv@latest",
|
||||||
|
"bun@latest"
|
||||||
|
],
|
||||||
|
"env": {
|
||||||
|
"PATH": "$HOME/.cargo/bin:$HOME/go/bin:$HOME/.local/bin:$HOME/.bun/bin:$PATH",
|
||||||
|
"GITHUB_TOKEN": "$GITHUB_TOKEN",
|
||||||
|
"GOPATH": "$HOME/go",
|
||||||
|
"GOBIN": "$GOPATH/bin",
|
||||||
|
"GHQ_ROOT": "$CLONEDIR"
|
||||||
|
},
|
||||||
|
"shell": {
|
||||||
|
"init_hook": [],
|
||||||
|
"scripts": {
|
||||||
|
"test": [
|
||||||
|
"echo \"Error: no test specified\" && exit 1"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
23
deploy/process-compose.yaml
Normal file
23
deploy/process-compose.yaml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
version: "0.5"
|
||||||
|
|
||||||
|
processes:
|
||||||
|
IPFS:
|
||||||
|
namespace: testnet
|
||||||
|
command: "ipfs daemon --mount"
|
||||||
|
ready_log_line: "Daemon is ready"
|
||||||
|
|
||||||
|
Sonr:
|
||||||
|
namespace: testnet
|
||||||
|
command: "task sonrd:start"
|
||||||
|
depends_on:
|
||||||
|
IPFS:
|
||||||
|
condition: process_log_ready
|
||||||
|
|
||||||
|
Hway:
|
||||||
|
namespace: testnet
|
||||||
|
command: "hway"
|
||||||
|
depends_on:
|
||||||
|
IPFS:
|
||||||
|
condition: process_log_ready
|
||||||
|
Sonr:
|
||||||
|
condition: process_started
|
Loading…
x
Reference in New Issue
Block a user