Skip to content

development

bmen edited this page Mar 31, 2023 · 2 revisions

You can run the website locally on your computer and develop it.

Requirements:

To set up your environment to develop this website, clone this repo or your fork.

$ git clone https://github.com/ASKnetCommunity/PROJECT-NAME
$ cd PROJECT-NAME

Then run:

$ docker compose up -d

To check the logs, run this. (Using the --follow flag for tail the output.)

$ docker compose logs --follow

Then open your browser at:

Add pages, documents, data, etc. like normal to test the website's contents. As you make modifications, your site will regenerate and you should see the changes in the browser after a refresh.

To stop the website:

$ docker compose down
Clone this wiki locally