├── .gitignore ├── devserver.py ├── devserver.js ├── src ├── Navbar.js ├── Footer.js ├── Announcement.js ├── Header.js ├── Commits.js ├── source.js ├── styles.sass └── Issues.js ├── bower.json ├── static ├── config.json └── styles.css.map ├── package.json ├── config.md ├── LICENSE ├── index.html ├── templates └── index.html └── README.MD /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | _pycache 4 | .sass-cache 5 | .git 6 | .idea 7 | DS_Store 8 | -------------------------------------------------------------------------------- /devserver.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | from flask import render_template 3 | app = Flask(__name__) 4 | 5 | @app.route('/') 6 | def home(): 7 | return render_template('index.html') 8 | 9 | if __name__ == "__main__": 10 | app.config['TEMPLATES_AUTO_RELOAD']=True 11 | app.run(use_reloader=True,host="0.0.0.0") 12 | -------------------------------------------------------------------------------- /devserver.js: -------------------------------------------------------------------------------- 1 | const express = require('express') 2 | const app = express() 3 | 4 | app.use(express.static(__dirname + '/')) 5 | 6 | app.get('/', function (req, res) { 7 | res.status(200).sendFile(__dirname + '/index.html') 8 | }) 9 | 10 | app.listen(5000, function () { 11 | console.log('StatusReport is listening on port 5000!') 12 | }) 13 | -------------------------------------------------------------------------------- /src/Navbar.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | class Navbar extends React.Component { 4 | constructor(props) { 5 | super(props); 6 | } 7 | 8 | render() { 9 | return( 10 | 13 | ) 14 | } 15 | } 16 | 17 | export default Navbar; 18 | -------------------------------------------------------------------------------- /src/Footer.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactMarkdown from 'react-markdown' 3 | 4 | class Footer extends React.Component { 5 | constructor(props) { 6 | super(props); 7 | } 8 | 9 | render() { 10 | return( 11 |