All Projects → benc-uk → Smilr

benc-uk / Smilr

Licence: mit
Microservices reference app showcasing a range of technologies, platforms & methodologies

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Smilr

Hands On Microservices With Csharp 8 And .net Core 3 Third Edition
Hands-On Microservices with C# 8 and .NET Core 3, Third Edition, published by Packt
Stars: ✭ 46 (-32.35%)
Mutual labels:  microservice, azure
Microservices Reference Implementation
A reference implementation demonstrating microservices architecture and best practices for Microsoft Azure
Stars: ✭ 671 (+886.76%)
Mutual labels:  microservice, azure
Spring Cloud Azure
Spring Cloud integration with Azure services
Stars: ✭ 197 (+189.71%)
Mutual labels:  microservice, azure
Microservice
Xigadee is an open-source Microservice framework, developed by Paul Stancer and Guy Steel. The libraries provide a simple and consistent approach for building modern enterprise API and Microservice based solutions; specifically those solutions targeted on the Azure platform.
Stars: ✭ 47 (-30.88%)
Mutual labels:  microservice, azure
Microservices Example
Example of a microservices architecture on the modern stack of Java technologies
Stars: ✭ 66 (-2.94%)
Mutual labels:  microservice
70 535 Architecting Microsoft Azure Solutions Exam Notes
Exam Notes 70-535: Architecting Microsoft Azure Solutions
Stars: ✭ 63 (-7.35%)
Mutual labels:  azure
Ha Sap Terraform Deployments
Automated SAP/HA Deployments in Public/Private Clouds
Stars: ✭ 61 (-10.29%)
Mutual labels:  azure
Azure password harvesting
Plaintext Password harvesting from Azure Windows VMs
Stars: ✭ 61 (-10.29%)
Mutual labels:  azure
Graphql Microservices
Showcasing a graphql microservice setup
Stars: ✭ 68 (+0%)
Mutual labels:  microservice
Kotlin Spring Boot Jpa Rest Api Demo
Build a Restful API with Kotlin, Spring Boot, Mysql, Jpa and Hibernate
Stars: ✭ 67 (-1.47%)
Mutual labels:  microservice
Aspnetcore.identity.documentdb
A Cosmos DB / DocumentDB Storage Provider for ASP.NET Core Identity
Stars: ✭ 64 (-5.88%)
Mutual labels:  azure
Spatial Computing
Samples showing how to use Azure and AI services in Mixed Reality projects
Stars: ✭ 63 (-7.35%)
Mutual labels:  azure
Scaffold
scaffold项目是使用ServiceComb构建完整CRM系统的教学Demo
Stars: ✭ 66 (-2.94%)
Mutual labels:  microservice
Private Aks Cluster
This sample shows how to create a private AKS cluster in a virtual network along with a jumpbox virtual machine.
Stars: ✭ 63 (-7.35%)
Mutual labels:  azure
Parallel
A golang parallel library, used for business logic aggregation and refactory without changing user function declaration.
Stars: ✭ 67 (-1.47%)
Mutual labels:  microservice
Aspnetboilerplate Core Ng
Tutorial for ASP.NET Boilerplate Core + Angular
Stars: ✭ 61 (-10.29%)
Mutual labels:  azure
Weathermap
Stars: ✭ 65 (-4.41%)
Mutual labels:  microservice
S
a go web freamwork for micro service, very very easy to create and deploy, with auto service registry and discover, high performance and based on http/2 no ssl
Stars: ✭ 67 (-1.47%)
Mutual labels:  microservice
Terraform Security Scan
Run a security scan on your terraform with the very nice https://github.com/liamg/tfsec
Stars: ✭ 64 (-5.88%)
Mutual labels:  azure
Aspnetcoreid4external
external OpenID Connect Login to IdentityServer4 with AAD
Stars: ✭ 63 (-7.35%)
Mutual labels:  azure

Smilr - Microservices Reference Project

Smilr is a multi component application & reference architecure. It has been designed to showcase microservices design patterns & deployment architectures. It consists of a front end single page application (SPA), two lightweight services, supporting database and back end data enrichment functions.

The Smilr app is simple, it allows users to provide feedback on events or sessions they have attended via a simple web & mobile interface. The feedback consists of a rating (scored 1-5) and supporting comments.

  • The user interface is written in Vue.js and is completely de-coupled from the back end, which it communicates with via REST. The UI is fully responsive and will work on on both web and mobile.
  • The two microservices are both written in Node.js using the Express framework. These have been containerized so can easily be deployed & run as containers
  • The database is a NoSQL document store holding JSON, provided by MongoDB and/or Azure Cosmos DB

The app has been designed to be deployed to Azure, but the flexible nature of the design & chosen technology stack results in a wide range of deployment options and compute scenarios, including:

  • Containers: Azure Kubernetes Service (AKS) or Azure Container Instances
  • Platform services: Regular Windows Azure App Service (Web Apps) or Linux Web App for Containers
  • Serverless compute: Azure Functions
  • Virtual Machines: Sub-optimal but theoretically possible

This application supports a range of demonstration, and learning scenarios, such as:

  • A working example of microservices design
  • Use of containers, Docker & Kubernetes
  • NoSQL and document stores over traditional relational databases
  • Development and deployment challenges of single page applications
  • RESTful API design
  • Platform services for application hosting
  • Using serverless technology to support or provide services
  • DevOps practices, automated CI build, test & release pipelines
  • Use of an open source application stack such as Node.js
  • The Actor model as an alternative to a traditional data model
  • CQRS (Command & Query Responsibility Segregation) as a possible pattern to separate read and write actions and stores

Table of Contents


Architecture & Core App Components

arch{: .framed .padded}

Logical Components

The app consists of four logical components

  • Client Vue.js SPA - The primary web user interface, as a single page application (SPA)
  • Frontend Service - Serves the above client SPA and acts as runtime config API
  • Data API Service - Main REST API used by the app for all data access
  • Database - Backend MongoDB database & persistent store
  • Sentiment Service - Optional service for sentiment scoring of user feedback comments. Only used when deploying to Kubernetes. Read more

Screenshot

screenshot{: .framed .padded}

Getting Started

There are a number of ways to get started with this project depending on your goals. Below are some suggestions and pointers

  • Running Smilr locally with Node.js - If you're a developer interested in the building and running Node.js and/or Vue.js components locally, this is a good place to start.
  • Deploying to Azure from pre-built images - Probably the quickest way to deploy Smilr is using ARM templates & Azure Container Instances running from pre-built images
  • Deploying to Kubernetes - This project is an ideal candidate for running in Kubernetes. Step by step documentation is provided to walk through deployment to Kubernetes and Azure Kubernetes Service

Repository Structure

This is a monorepo so contains multiple discreet but loosely dependant projects. The top levels of the repository directory tree are laid out as follows

/
├── archive            Older and experimental code archive 
│   ├── mobile             Nativescript + Vue.js mobile client 
│   └── go                 Work in progress re-write of the main services in Go
├── azure              Supporting files for Azure deployment etc
│   ├── functionsv2      Azure Functions serverless implementation
│   ├── pipelines        Azure Pipelines for CI/CD
│   └── templates        Example ARM templates
├── docs               Documentation
├── docker             Docker compose files, Note. Dockerfiles are elsewhere 
├── etc                Supporting files, pictures and other artefacts 
├── kubernetes         Docs and files to support deployment to Kubernetes & AKS
│   ├── helm             Helm chart for deploying Smilr with Helm
│   ├── advanced         Deployment YAML for use with Ingress, SSL and persistence
│   └── basic            Simple deployment without Ingress or persistence
├── node               Main microservices, written in Node.js
│   ├── data-api         Data API service source code
│   └── frontend         Frontend service source code
├── orleans            Orleans actor based implementation of the Data API
├── testing            Mock test data, API tests and load test scripts
└── vue                The main app frontend, a Vue.js SPA
    ├── src              Source code of Vue.js app
    └── mock-api         Provides a fake API and database for local testing

Reference Implementation

The reference implementation of the Smilr app consists of the frontend server & data-api written in Node.js and the client as a SPA written in Vue.js. There are alternative versions (detailed below) but currently the core of the project is represented this implementation:

📃 Vue.js SPA - Documentation

📃 Frontend Server - Documentation

📃 Data API - Documentation

Notes on Security

As Smilr is commonly used in demos, workshops/labs and for self learning, it defaults to being unsecured and open. This makes it easier to deploy without additional configuration or authentication complications.

Should you want to secure Smilr, typically because you want to have a permanent "live" version hosted and accessible, this is also possible. Securing both single page applications and REST APIs presents some interesting challenges. The approach taken was to use Azure Active Directory v2 for identity, the OAuth2 Implicit Grant flow for authentication and OAuth2 bearer tokens for validation

Fundamentals

These docs covers some of the fundamental aspects of Smilr, which are independent of any particular implementation

📃 API Reference & Data Model

📃 Database Notes

Runtime Configuration & Settings

The primary configuration mechanism for this project is system environmental variables (or env vars). These env vars are used with the Node.js services, container runtime, Docker tools and helper scripts. This gives a flexible and cross platform way to inject runtime settings, it is also widely supported in Azure (e.g. Azure App Service Settings) and Docker/Kubernetes.

There are numerous ways to set & override environmental variables; in the operating system, the user profile or from command line tools. For local development purposes it is strongly recommended you create & use .env files. These are simple text files containing var=value pairs. Sample files named .env.sample are provided within the project, which you can rename and use. Note. .env files can often contain secrets so they are prevented from being committed to Git

Containers & Kubernetes

As containers and Kubernetes represents such an important build & deployment scenario, they have dedicated guides and documentation

📃 Building Smilr as Containers

📃 Running and deploying in Kubernetes

Public Images

Pre built images are available on Dockerhub. Using these will naturally mean you can get started deploying/running Smilr without needing to do anything. However building your own is still recommended, especially if you want to understand the build process in more detail.

Images for the Node.js data API and frontend (serving the Vue.js client) are available.

  • The stable tag is only pushed after some manual validation and testing,
  • latest is auto-pushed with latest code every night
Smilr on Dockerhub 🡽

Deploying to Azure

See provided Azure Resource Manager (ARM) templates to allow you to deploy the complete Smilr app and all components to Azure. As all deployment scenarios are container based you also need to refer to the containers section described above

ARM Deployment Templates

DevOps & CI/CD

Automated CI/CD pipelines have been created using Azure Pipelines. These automatically build the various components as containers and releases them to Azure for testing. The current status of these builds & releases is shown below

Automated Build Status
Linux Images & Tests Build Status
Windows Images & Dockerhub Build Status

You can visit the Azure Devops Public Project where these pipelines reside, although keep in mind the source code repo remains here on GitHub.

DevOps Public Project - Smilr 🡽

If you want to try using Azure DevOps to build Smilr, the pipelines are provided as YAML for your own use. An Azure DevOps account/organisation is required to use these, but can be setup for free.

Sub Projects

There are several sub-projects and re-implementations of the Smilr architecture. Either at the backend, providing an API compatible with the data-api REST specification. Also the frontend has been implemented as a mobile app. All of these alternatives are considered experimental and for technology demo use cases

Changelog

High level project changes and overall history are recorded here:

  • Jan 2020 - Rewrote Node.js data API, using MVCS pattern
  • Jul 2019 - Start of Go implementation. Archived old sub-projects
  • Jun 2019 - Security improvements, MSAL and token validation
  • Dec 2018 - Total rewrite of SPA in Vue.js and proper AAD security
  • May 2018 - Major updates for Kubernetes deployment & Angular 6
  • Mar 2018 - Switched to MongoDB for database
  • Jan 2018 - Simple onetime password security added to API
  • Dec 2017 - Name changed to Smilr
  • Nov 2017 - Switched to CosmosDB SQL API (aka DocumentDB)
  • Oct 2017 - Project created, using Azure Table storage
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].