This repo contains the whole <getkirby.com> website.
- Local development server running PHP 7.1+ (e.g. Apache, nginx, MAMP)
- Node.js 8+ + NPM
git clone [email protected]:bastianallgeier/v3.getkirby.com.git
npm install
We are using Laravel Mix as our build tool,
which also provides BrowserSync for an optimal developer experience. By default,
it expects a copy of the site to run at http://getkirby.test
. The document root
of the site is the subfolder www/
.
You can override the default domain if you prefer to run the site
at a different domain. To do so, just copy config.default.js
to a file
named config.js
. You can define a custom domain that new file.
cd [root folder of this repo]
npm start
This will run BrowserSync and watch your CSS, JS and template files for changes.
Stop the server by pressing CRTL+C
or by closing the CLI window.
npm run build