Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Registry app - Phase 1 #831

Merged
merged 28 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
d9d1cc0
Init AppRegistry
sparkplug0025 Aug 28, 2024
f00caec
app-registry package
sparkplug0025 Sep 4, 2024
85130c6
metadata form adjusts
sparkplug0025 Sep 4, 2024
1080ead
rename appregistry -> workshop
sparkplug0025 Sep 4, 2024
5821a85
fix plugin and package libs
sparkplug0025 Sep 5, 2024
5ca24c7
fix package structure
sparkplug0025 Sep 6, 2024
534d350
add tags and more tests
sparkplug0025 Sep 7, 2024
61deb12
Merge branch 'main' into sparkplug0025/app-registry
sparkplug0025 Sep 13, 2024
1f80b25
get/set metadata wired up
sparkplug0025 Sep 18, 2024
22a01b3
Tags autocomplete, owners, tests, query, user-switch
sparkplug0025 Oct 6, 2024
b2acb42
preload form with appMetadata
sparkplug0025 Oct 16, 2024
c3e65c2
Merge branch 'main' into sparkplug0025/app-registry
sparkplug0025 Oct 17, 2024
1d16c3e
adjust storesys
sparkplug0025 Oct 17, 2024
2a2c4da
fix package being built and deployed
sparkplug0025 Oct 18, 2024
a1b3da3
fix workshop service plugin
sparkplug0025 Oct 18, 2024
f85cac1
Merge branch 'main' into sparkplug0025/app-registry
sparkplug0025 Oct 21, 2024
e410742
testing attempt
sparkplug0025 Oct 21, 2024
6d87edf
test attempt #2
sparkplug0025 Oct 22, 2024
8992762
rename Workshop -> Registry
sparkplug0025 Oct 22, 2024
22146fa
overall improvements: wit, status enum, interface simplification etc
sparkplug0025 Oct 22, 2024
90b79a2
remove ui
sparkplug0025 Oct 22, 2024
0b94ca1
fix registry test
sparkplug0025 Oct 22, 2024
d2c834d
Address PR review comments
sparkplug0025 Oct 31, 2024
c5c7597
Merge branch 'main' into sparkplug0025/app-registry
sparkplug0025 Oct 31, 2024
aac8064
Address PR review comments
sparkplug0025 Oct 31, 2024
bf9258b
Merge branch 'main' into sparkplug0025/app-registry
sparkplug0025 Nov 1, 2024
d5db95d
Address PR review comments
sparkplug0025 Nov 1, 2024
23cb5eb
Address PR review comments
sparkplug0025 Nov 4, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,777 changes: 2,777 additions & 0 deletions services/user/Registry/Cargo.lock

Large diffs are not rendered by default.

36 changes: 36 additions & 0 deletions services/user/Registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
[workspace]
resolver = "2"
members = ["service", "query", "plugin"]

[workspace.package]
version = "0.1.0"
rust-version = "1.64"
edition = "2021"
publish = false
repository = "https://github.com/gofractally/psibase"
homepage = "https://github.com/gofractally/psibase"

[package]
name = "registry_package"
edition.workspace = true
version.workspace = true

[package.metadata.psibase]
package-name = "AppRegistry"
description = "Registry for psibase apps"
services = ["registry"]

[profile.release]
codegen-units = 1
opt-level = "s"
debug = false
strip = true
lto = true

[lib]
crate-type = ["rlib"]

[dependencies]
registry = { path = "service" }
r-registry = { path = "query" }
registry-plugin = { path = "plugin" }
18 changes: 18 additions & 0 deletions services/user/Registry/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Psibase Registry

Steps to run the app in dev mode:

```sh
# after building psibase at the root of the repo
cd build
./psinode db
open http://localhost:8080

# go through the steps to create a network in dev mode, name the producer as prod and confirm

# back to this directory
cd Registry
cargo psibase install && psibase install --reinstall target/wasm32-wasi/release/packages/registry.psi

open http://registry.psibase.127.0.0.1.sslip.io:8080/
```
Loading
Loading