Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
💥 Re-factored the services response to just return an array, added a …
…couple new routes
- Loading branch information
Showing
9 changed files
with
1,744 additions
and
4,426 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1 +1 @@ | ||
web=npm start | ||
web=npm run start |
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,36 @@ | ||
<html> | ||
<head> | ||
<title>gh: checker/api</title> | ||
</head> | ||
<style> | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; | ||
font-size: 16px; | ||
display: flex; | ||
} | ||
.wrapper { | ||
width: 75%; | ||
margin: 0 auto; | ||
align-self: center; | ||
text-align: center; | ||
} | ||
.links > a,span { display:block; } | ||
</style> | ||
<body> | ||
<div class="wrapper"> | ||
<h1>Username Checker API</h1> | ||
<div>(Base Route)</div> | ||
<p> | ||
This is the base route for the checker api, aka the Penguin API. | ||
I don't intend on making this page pretty as I don't have a lot of time anymore. | ||
However, if you want to contribute, the project is open-source on GitHub. Just fork it and submit a pull request. | ||
</p> | ||
<div class="links"> | ||
<a href="/gh">GitHub Repository</a> | ||
<span><a href="/docs">API Documentation</a> via Swagger</span> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.