forked from mycloudnexus/cc-api-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2df5b3a
commit 86c5b0e
Showing
6 changed files
with
23 additions
and
28 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 |
---|---|---|
|
@@ -51,4 +51,3 @@ jobs: | |
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
|
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
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
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,19 +1,21 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<title>cc-api-sandbox</title> | ||
<style> | ||
code { | ||
<head> | ||
<title>cc-api-sandbox</title> | ||
<style> | ||
code { | ||
background-color: lightgray; | ||
color: black; | ||
padding: 0.1em 0.2em 0.1em 0.2em; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h1>cc-api-sandbox</h1> | ||
The API server is running and working correctly! You can use <code>curl -X "<METHOD>" http://127.0.0.1:9000/<api path></code> | ||
to access the API endpoints. As an example, you can use <code>curl -X "<GET>" http://127.0.0.1:9000/heartbeat</code> to get the | ||
uptime and API version of the sandbox. | ||
</body> | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h1>cc-api-sandbox</h1> | ||
The API server is running and working correctly! You can use | ||
<code>curl -X "<METHOD>" http://127.0.0.1:9000/<api path></code> | ||
to access the API endpoints. As an example, you can use | ||
<code>curl -X "<GET>" http://127.0.0.1:9000/heartbeat</code> to get | ||
the uptime and API version of the sandbox. | ||
</body> | ||
</html> |