Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 555 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 555 Bytes

Aventum Website

This is the source code for aventum.org website, it is a Gatsby application.

To run this application using docker on Windows PowerShell you can run:

docker build -t aventum-gatsby .

docker run -it -p 8000:8000 -v /app/node_modules -v ${pwd}:/app -e CHOKIDAR_USEPOLLING=true aventum-gatsby

To run this application using docker on WSL2 you can run:

docker build -t aventum-gatsby .

docker run -it -p 8000:8000 -v /app/node_modules -v $PWD:/app -e CHOKIDAR_USEPOLLING=true aventum-gatsby