• Stars
    star
    170
  • Rank 222,181 (Top 5 %)
  • Language SCSS
  • License
    MIT License
  • Created over 4 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Website for Principles of Sustainable Software Engineering

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