Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 1.14 KB

DEVELOPMENT.md

File metadata and controls

40 lines (30 loc) · 1.14 KB

___

Development

Local development setup

Run jekyll serve with --watch option to test changes in "real time":

  • Run:
    task compose:up
  • Check the English version is available on https://localhost, and the Russian version on http://ru.localhost (add ru.localhost record in your /etc/hosts to access the Russian version of the site).

Add configurator content:

  • Run:
    task local:gen:configurator
    Run task clean to cleanup working directory.

Optionally serve documentation content:

  • Run in werf/werf repository:
    cd ../werf/werf
    task compose:up

Cleanup

  • task compose:down - stop all containers.
  • task clean - delete all generated content.
  • docker network delete werfio-dev - delete shared docker network (requires task compose:down in werf/werf repository).