Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 432 Bytes

README.md

File metadata and controls

32 lines (23 loc) · 432 Bytes

API SERVER

The main application server for servicing requests from the User web-app

HOW TO RUN DEV

BUILD DOCKER IMAGE

From project root folder run next command

docker build \
	-t rc-api-server-dev \
	-f ./api-server/Dockerfile \
	./api-server

RUN DOCKER IMAGE

docker run \
	-it \
	-e PORT="8000" \
	-p 8000:8000 \
	rc-api-server-dev

ACCESS API

http://localhost:8000/graphql