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
FORMAT: A1 | |
# Movies API | |
This is an API Blueprint example describing a movies API. | |
# Group Movies | |
Resources related to movies in the API. |
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
openapi: "3.0.2" | |
info: | |
title: Feedly-clone | |
version: v1 | |
paths: | |
/channels: | |
summary: Set of channels, e.g. blogs, websites or podcasts | |
get: | |
responses: | |
"200": |
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
openapi: "3.0.1" | |
info: | |
title: Movies API | |
version: v1 | |
paths: | |
/movies: | |
summary: A set of movies | |
get: | |
summary: Get a list of movies |
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
<VirtualHost *:80> | |
ServerName www.example.com | |
ServerAlias example.com | |
ServerAdmin webmaster@example.com | |
DocumentRoot /usr/local/www/documents | |
Alias /robots.txt /usr/local/www/documents/robots.txt | |
Alias /favicon.ico /usr/local/www/documents/favicon.ico |