WIP (Work in Progress): This project is under heavy construction. Please, use with caution. It is planned to develope a modular static page generator for developer novices to maintain there own website. It is recommended to use it together with nls-lumen-webhook for automated deployments.
command | description |
---|---|
npm run start |
start development server on http://localhost:4200/ |
npm run build |
build production application and save to ./dist |
Download dependencies with npm i
or yarn
.
Run npm run start
for a dev server. Browser opens and navigates automatically to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
Run npm run build
to build the project. The build artifacts will be stored in the dist/
directory. Use the --prod
flag for a production build.
Create inside .git/hooks/
a new hook post-merge
.
#!/bin/bash
# Install node package modules
npm i
# Build project
npm run build
Git hooks have to be executables, so change the permissions to.
chmod a+x ~/.git/hooks/post-merge
Informations about the motivation, authors and license
The author of this software is Michael Czechowski, web developer based in Stuttgart and Berlin, Germany. Only with the support of Sarah Esser, artist and sculptress based in Berlin, this project could be realized. We are proud to call our software free and open.
- Michael Czechowski (mail@dailysh.it)
Copyright (C) 2018 Michael Czechowski
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.