Skip to content

Commit 36eb62f

Browse files
committed
Makefile: Introduce ipython targets for REPL
1 parent 0f54086 commit 36eb62f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Makefile

+8
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@ check-all:
3232
python3 ./run_tests.py --dbs=dummydb,postgres
3333
check: check-postgres
3434

35+
.PHONY: ipython-dev ipython-staging ipython-production
36+
ipython-dev: dev
37+
docker exec -it rpcexplorer_explorer_1 ipython
38+
ipython-staging: staging
39+
docker exec -it rpcexplorer_explorer_1 ipython
40+
ipython-production: production
41+
docker exec -it rpcexplorer_explorer_1 ipython
42+
3543
.PHONY: stop stop-dev stop-staging stop-production
3644
stop-dev:
3745
cd docker/dev ; docker-compose stop

0 commit comments

Comments
 (0)