-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from booknds/beta-0.6
Beta 0.6
- Loading branch information
Showing
78 changed files
with
1,735 additions
and
1,229 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"presets": ["es2015"] | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
node_modules | ||
.idea | ||
.DS_Store | ||
.tmp | ||
.git | ||
dist | ||
Dockerfile | ||
server.js |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<title>Swagger Graphical Editor</title> | ||
<meta http-equiv="X-UA-Compatible" content="IE=Edge"> | ||
<meta charset="UTF-8"> | ||
<!-- angular material start --> | ||
<!-- angular material end --> | ||
<!--Import jQuery before materialize.js--> | ||
<!-- dependencies --> | ||
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script> | ||
<!--materialize css--> | ||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/css/materialize.min.css"> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/js/materialize.min.js"></script> | ||
<script src="./dist/bundle.js"></script> | ||
</head> | ||
<body> | ||
<div ng-app="SwaggerGraphicalEditor"> | ||
<app> </app> | ||
</div> | ||
|
||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/** | ||
* Created by eric on 3/15/16. | ||
*/ | ||
const express = require("express"); | ||
|
||
const app = express(); | ||
const port = 3030; | ||
|
||
console.log(__dirname); | ||
|
||
app.use("/dist", express.static(__dirname + "/dist")); | ||
|
||
app.get("*", (req, res) => { | ||
res.sendFile("./index.html", { root: __dirname }); | ||
}); | ||
|
||
app.listen(port); | ||
console.log("listening on port 3030"); |
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
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
Oops, something went wrong.