Skip to content

jawache/principles-green

Repository files navigation

Principles.Green

The Principles of Green Software Engineering are a core set of competencies needed to define, build and run sustainable software applications.

Update and install the web site localy:

  1. Duplicate repo
  2. npm install markdown-serve
  3. npm install express
  4. Create server.js in root folder with this code
var express = require('express'),
    mds = require('markdown-serve'),
    path = require('path');
 
var app = express();
 
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'jade');
 
app.use(mds.middleware({ 
    rootDirectory: path.resolve(__dirname, '/'),
    view: 'markdown'
}));
  1. npm run start

About

Website for Principles of Sustainable Software Engineering

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published