This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
font-family: 'Lato'; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. create basic authentication header : https://developer.atlassian.com/server/jira/platform/basic-authentication/ | |
by base 64 encoded string of username:password (your jira username and password) | |
2. Add authorization header to the request: | |
Authorization: Basic ZnJlZDpmcmVk | |
3. Content-Type: application/json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var express = require('express'); //create a new express app | |
var exphbs = require('express-handlebars'); | |
var router = express.Router(); //use express 4.0 router to define routes | |
var bodyParser = require('body-parser'); //pull information from html post | |
var cookieParser = require('cookie-parser'); | |
var http = require('http'); | |
var path = require('path'); | |
var winston = require('winston'); | |
var app = express(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<style> | |
html, | |
body { | |
margin:0; | |
padding:0; | |
height:100%; | |
} | |
#container { |