Running Locally
Last update: 4 days ago by Mateusz FilipowiczReading time: 2 min
If you want to develop BooGi or use plain Gatsby for your BooGi app development, then you can follow this guide.
Download dependencies
yarn
Run Gatsby in development mode
gatsby develop
This will run BooGi on port 8000 on localhost.
Build and run docker image locally
docker build -t boogi -f docker/Dockerfile .docker run -dp 80:80 boogi
This will run BooGi on port 80 on localhost.