This will guide you through setting up a replica set in a docker environment using.
- Docker Compose
- MongoDB Replica Sets
- Mongoose
- Mongoose Transactions
Thanks to https://gist.github.com/asoorm for helping with their docker-compose file!
| import 'package:flutter/material.dart'; | |
| class ExpandablePageView extends StatefulWidget { | |
| final List<Widget> children; | |
| const ExpandablePageView({ | |
| Key key, | |
| @required this.children, | |
| }) : super(key: key); |
| import { | |
| Injectable, | |
| Injector, | |
| ComponentFactoryResolver, | |
| EmbeddedViewRef, | |
| ApplicationRef, | |
| ComponentRef | |
| } from '@angular/core'; | |
| @Injectable() |
This will guide you through setting up a replica set in a docker environment using.
Thanks to https://gist.github.com/asoorm for helping with their docker-compose file!
| import 'package:flutter/material.dart'; | |
| import 'package:flutter/rendering.dart'; | |
| import 'dart:math' as math; | |
| class CustomLayout extends MultiChildRenderObjectWidget { | |
| CustomLayout({ | |
| Key key, | |
| List<Widget> children = const <Widget>[], | |
| }) : super(key: key, children: children); |
| ## PFX Creation taken from https://github.com/Azure/azure-xplat-cli/wiki/Getting-Self-Signed-SSL-Certificates-(.pem-and-.pfx) | |
| ## PEM to CER (DER encoded) taken from http://stackoverflow.com/a/405545 | |
| ## PFX from PEM FIles taken from https://www.ssl.com/how-to/create-a-pfx-p12-certificate-file-using-openssl/ | |
| # Install `openssl` package | |
| # Generating a private key: | |
| openssl genrsa 2048 > private_key.pem |
Read the blog at http://fokkezb.nl/2013/09/20/url-schemes-for-ios-and-android-2/