Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 330 Bytes

File metadata and controls

24 lines (16 loc) · 330 Bytes

Space Shooters

Build project locally

cd space-shooters

yarn install
yarn build

# visit http://localhost:8000
python3 -m http.server --directory dist

Build project using Docker

cd space-shooters

docker build . -t space-shooters

# visit http://localhost:8000
docker run -p 8000:80 space-shooters