> For the complete documentation index, see [llms.txt](https://smu-seniors.gitbook.io/excel-in-tech/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://smu-seniors.gitbook.io/excel-in-tech/engineering/backend/developing-backend-for-real.md).

# Developing Backend For Real

* Web Servers
  * Apache
  * Caddy
  * MS IIS
  * Nginx
  * Gunicorn
* Advanced API Knowledge
  * HATEOAS:

    HATEOAS is an acronym for Hypermedia As The Engine Of Application State, it's the concept that when sending information over a RESTful API the document received should contain everything the client needs in order to parse and use the data i.e they don't have to contact any other endpoint not explicitly mentioned within the Document

    [WATCHOktane17: Designing Beautiful REST + JSON APIs (3:56 - 5:57)](https://youtu.be/MiOSzpfP1Ww?t=236)
  * OpenAPI Sepcifications (OAS)

    The OpenAPI Specification (OAS) defines a standard, language-agnostic interface to RESTful APIs which allows both humans and computers to discover and understand the capabilities of the service without access to source code, documentation, or through network traffic inspection. When properly defined, a consumer can understand and interact with the remote service with a minimal amount of implementation logic.

    An OpenAPI definition can then be used by documentation generation tools to display the API, code generation tools to generate servers and clients in various programming languages, testing tools, and many other use cases.

    [OFFICIAL WEBSITEOpenAPI Specification Website](https://swagger.io/specification/)

    [DEMOOpen API Live Editor](https://swagger.io/tools/swagger-editor/)

    [COURSEOfficial training guide](https://swagger.io/docs/specification/about/)

    [WATCHOpenAPI 3.0: How to Design and Document APIs with the Latest OpenAPI Specification 3.0](https://www.youtube.com/watch?v=6kwmW_p_Tig)
  * Alternative Protocols
    * SOAP
    * gPRC / RPC
* Virtualization and Containerization
* Search Engines
* Message Brokers
* GraphQL


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://smu-seniors.gitbook.io/excel-in-tech/engineering/backend/developing-backend-for-real.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
