Skip to content

Commit 8afefe3

Browse files
committed
Initial commit
0 parents  commit 8afefe3

9 files changed

+106
-0
lines changed

Dockerfile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM alpine:latest
2+
RUN apk add --no-cache python3-dev \
3+
&& pip3 install --upgrade pip
4+
5+
WORKDIR /app
6+
COPY . /app
7+
8+
RUN pip3 --no-cache-dir install -r requirements.txt
9+
10+
ENTRYPOINT ["python3"]
11+
CMD ["app.py"]

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# REST API Template
2+
3+
This is an OpenShift-deployable template for a REST API and OpenAPI Specification that leverage Swagger. Please refer to the corresponding tutorial found here:
4+
5+
To run the API:
6+
7+
> python3 app.py
8+
9+
To check out the Swagger UI, head over to
10+
http://0.0.0.0:8080/api/ui/

app.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
from flask import Flask, render_template
2+
import connexion
3+
import requests
4+
import myapi
5+
6+
#Create the application instance!
7+
app = connexion.App(__name__, specification_dir='./')
8+
9+
#Read the swagger.yml file to configure the endpoints
10+
app.add_api('swagger.yml')
11+
12+
#Create a URL route in our application for "/"
13+
@app.route('/', methods=["GET","POST"])
14+
def home():
15+
return render_template('home.html')
16+
17+
if __name__ == '__main__':
18+
app.run(host='0.0.0.0', port=8080, debug=True)

constants.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
headers = {
2+
'Content-Type': 'application/json'}

myapi.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from flask import Flask, render_template, make_response, abort
2+
3+
#Prints a success message after the POST is successfully made.
4+
#Refer to swagger.yml to see when this runs
5+
def function():
6+
print("We've got a talking API!")
7+
return "200"

requirements.txt

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
aniso8601==7.0.0
2+
Click==7.0
3+
Flask==1.1.1
4+
Flask-RESTful==0.3.7
5+
itsdangerous==1.1.0
6+
Jinja2==2.10.1
7+
MarkupSafe==1.1.1
8+
pytz==2019.2
9+
six==1.12.0
10+
Werkzeug==0.15.5
11+
Requests==2.20.0
12+
connexion==2.7.0
13+
connexion[swagger-ui]
14+
swagger-ui-bundle

swagger.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
swagger: "2.0"
2+
info:
3+
description: This is the swagger file that goes with our server code
4+
version: "1"
5+
title: Swagger ReST Article
6+
consumes:
7+
- application/json
8+
produces:
9+
- application/json
10+
11+
basePath: /api
12+
13+
# Paths supported by the server application
14+
paths:
15+
/pathname:
16+
post:
17+
operationId: app.myapi.function
18+
tags:
19+
- Requirements
20+
summary: Post the entire requirements list
21+
description: Provide an object for the API to use in its POST function.
22+
parameters:
23+
- name: objectName
24+
in: body
25+
description: Entire the object
26+
required: False
27+
schema:
28+
type: object
29+
responses:
30+
201:
31+
description: Successfully posted object

templates/.gitkeep

Whitespace-only changes.

templates/home.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
3+
<html lang="en" dir="ltr">
4+
<head>
5+
<meta charset="utf-8">
6+
<title>REST API</title>
7+
</head>
8+
<div class="container">
9+
<nav>
10+
<a class="logo" href="{{ url_for('home') }}">Welcome to your REST API!</a>
11+
</nav>
12+
</div>
13+
</html>

0 commit comments

Comments
 (0)