Skip to content

🎭 Document based Content Management System with Angular and Bootstrap

License

Notifications You must be signed in to change notification settings

nextlevelshit/nls-ng6-donatello

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Donatello

Document based Content Management System with Angular 6

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.


Getting Started

Rquirements

Usefull Scripts

command description
npm run start start development server on http://localhost:4200/
npm run build build production application and save to ./dist

Development server

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.

Build for Distribution

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.

Recommended git hooks (optional)

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

Meta Information

Informations about the motivation, authors and license

Author

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.

Contributors

License

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.