Skip to content

Commit c2d9c07

Browse files
committed
Rename server to versionedstorageserver
1 parent 16874ec commit c2d9c07

File tree

10 files changed

+8
-8
lines changed

10 files changed

+8
-8
lines changed

.github/workflows/build-and-deploy-rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: |
3434
cd rust
3535
cargo build
36-
cargo run server/vss-server-config.toml&
36+
cargo run versionedstorageserver/vss-server-config.toml&
3737
3838
- name: Hit endpoint to verify service is up
3939
run: |

.github/workflows/ldk-node-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: |
4141
cd vss-server/rust
4242
cargo build
43-
cargo run server/vss-server-config.toml&
43+
cargo run versionedstorageserver/vss-server-config.toml&
4444
- name: Run LDK Node Integration tests
4545
run: |
4646
cd ldk-node

rust/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[workspace]
22
resolver = "2"
3-
members = ["server", "api", "impls", "auth-impls"]
4-
default-members = ["server"]
3+
members = ["versionedstorageserver", "api", "impls", "auth-impls"]
4+
default-members = ["versionedstorageserver"]
55

66
[profile.release]
77
panic = "abort"

rust/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ cargo build --release
1717
```
1818

1919
### Running
20-
1. **Edit Configuration**: Modify `./server/vss-server-config.toml` to set application configuration and
20+
1. **Edit Configuration**: Modify `./versionedstorageserver/vss-server-config.toml` to set application configuration and
2121
environment variables as needed. Add PostgreSQL endpoint configuration.
2222
2. Create table in PostgreSQL using `./impls/src/postgres/sql/`
2323
3. Start server:
2424
```
25-
cargo run -- server/vss-server-config.toml
25+
cargo run -- versionedstorageserver/vss-server-config.toml
2626
```
2727
4. VSS endpoint should be reachable at `http://localhost:8080/vss`.
2828

2929
### Configuration
3030

31-
Refer to `./server/vss-server-config.toml` to see available configuration options.
31+
Refer to `./versionedstorageserver/vss-server-config.toml` to see available configuration options.
3232

3333
### Support
3434

rust/server/Cargo.toml renamed to rust/versionedstorageserver/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "server"
2+
name = "versionedstorageserver"
33
version = "0.1.0"
44
edition = "2021"
55

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)