Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jawache/principles-green
Website for Principles of Sustainable Software Engineering
https://github.com/jawache/principles-green
Last synced: 1 day ago
JSON representation
Website for Principles of Sustainable Software Engineering
- Host: GitHub
- URL: https://github.com/jawache/principles-green
- Owner: jawache
- License: mit
- Created: 2020-03-19T22:00:35.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-05-23T23:12:50.000Z (over 1 year ago)
- Last Synced: 2024-10-29T21:01:49.838Z (10 days ago)
- Language: SCSS
- Size: 4.05 MB
- Stars: 171
- Watchers: 15
- Forks: 27
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- Contributing: contributing.md
- License: LICENSE.txt
Awesome Lists containing this project
- open-sustainable-technology - Principles of Green Software Engineering - Are a core set of competencies needed to define, build and run sustainable software applications. (Consumption / Computation and Communication)
README
# 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'
}));
```
5. npm run start