Skip to content

Commit

Permalink
.gitmodules: nostr-rs-relay -> nostr/rs-relay
Browse files Browse the repository at this point in the history
GNUmakefile: update commands
  • Loading branch information
RandyMcMillan committed Mar 10, 2023
1 parent 9e221c7 commit 5c4a1c5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,8 @@
url = https://github.com/PLEBNET-PLAYGROUND/playground-nostr-rs-relay.git
branch = v0.0.3
ignore = dirty
[submodule "rs-relay"]
path = nostr/rs-relay
url = https://github.com/PLEBNET-PLAYGROUND/playground-nostr-rs-relay.git
branch = v0.0.3
ignore = dirty
18 changes: 9 additions & 9 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -512,15 +512,15 @@ endif
@echo ''
submodules:## git submodule update --init --recursive
@git submodule update --init --recursive
.PHONY: nostr-rs-relay
nostr-rs-relay:## pushd nostr-rs-relay && make build run && popd
pushd $(PWD)/nostr-rs-relay && make build run && popd || $(MAKE) submodules $@
nostr-rs-relay-build:## pushd nostr-rs-relay-build && make && popd
pushd $(PWD)/nostr-rs-relay && make build && popd || $(MAKE) submodules $@
nostr-rs-relay-run:## pushd nostr-rs-relay-run && make && popd
pushd $(PWD)/nostr-rs-relay && make run && popd || $(MAKE) submodules $@
nostr-rs-relay-restart:## pushd nostr-rs-relay-run && make && popd
pushd $(PWD)/nostr-rs-relay && docker-compose restart && popd || $(MAKE) submodules $@
.PHONY: nostr/rs-relay
nostr-rs-relay:## pushd nostr/rs-relay && make build run && popd
pushd $(PWD)/nostr/rs-relay && make build run && popd || $(MAKE) submodules $@
nostr-rs-relay-build:## pushd nostr/rs-relay && make build && popd
pushd $(PWD)/nostr/rs-relay && make build && popd || $(MAKE) submodules $@
nostr-rs-relay-run:## pushd nostr/rs-relay && make && popd
pushd $(PWD)/nostr/rs-relay && make run && popd || $(MAKE) submodules $@
nostr-rs-relay-restart:## pushd nostr/rs-relay && make && popd
pushd $(PWD)/nostr/rs-relay && docker-compose restart && popd || $(MAKE) submodules $@
#######################
.PHONY: clean
clean:## docker compose down --remove-orphans --rmi all
Expand Down

0 comments on commit 5c4a1c5

Please sign in to comment.