Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 311 Bytes

deployment.md

File metadata and controls

19 lines (13 loc) · 311 Bytes

Deploying DigiScript

Running Locally

This starts the web server listening on port 8080

cd server
./main.py

Running using docker

This will start DigiScript running, and map port 8080 locally to 8080 on the container

docker build -t digiscript:latest .
docker-compose up -d