This directory contains our reference server implementation. Routerlicious is the main composed server definition that pulls together multiple micro-services that provide the ordering and storage requirement of Fluid runtime.
Admin provides tenant management for Routerlicious
Auspkn provides REST API access to npm packages. Useful as a CDN. Its API is based off of unpkg.
Charts Kubernetes charts for some micro-services
Gateway Internal landing page for the Fluid server
Gitrest provides a REST API to a GitHub repository. Its API is based off of GitHub's REST APIs.
Gitssh is a git ssh server client container.
Headless-agent loads Fluid data stores on a headless chromium browser.
Historian provides a REST API to git repositories. The API is similar to that exposed by GitHub but can be used in local development.
Lambdas serverless lambda version of Fluid services
Routerlicious composed reference server implementation
Tinylicious Light-weight monolithic server implementation
To get started with Routerlicious and the Fluid reference implementation, you must install docker and allocate at least 4gb of RAM. We suggest you use our docker images, as outlined by the docker compose to start. You can run npm run start:docker
from the root directory to try this.
- Download and install Docker
- Configure Docker to have 4gb of RAM
- Find and connect to our Docker Image registry
- Microsoft-internal: run
docker login prague.azurecr.io
and provide the correct username/password - Public access: Coming soon!
- Start the Container with
npm run start:docker
from the repo root, which does this:
"start:docker": "docker-compose -f server/docker-compose.yml up"
For development, you'll also need to give docker access to your drive (Shared Drives). The instructions for local development are available in Routerlicious.
- Port already allocated
- This can happen if you have a process already running on a port the docker-compose file expects to have available
- This may be Tinylicious, which also expects to run on 3000
- Drive Share Failure
- An intermittent failure most frequent on Windows, best solved by reinstalling
- Not Enough RAM
- Allocate more RAM
To use Routerlicious with a Yo-Fluid container, you should start the Routerlicious docker containers, and then start the webpack dev server with the docker env command.
"start:docker": "webpack-dev-server --config webpack.config.js --package package.json --env.mode docker",
Gateway is an example of a service providing its own Fluid Container host. Gateway serves a Fluid Loader.
You can access this loader by using the following URL Schema
https://localhost:3000/loader/fluid/${container-identifier}?chaincode=${data-store-package-name}@${version}