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!
| # ios | |
| match(...) | |
| package = load_json(json_path: "../package.json") | |
| increment_version_number(version_number: package["version"]) | |
| increment_build_number(build_number: ENV["CIRCLE_BUILD_NUM"] || 1) | |
| # android | |
| package = load_json(json_path: "../package.json") |
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 React, { useMemo, useRef } from 'react'; | |
| import { View } from 'react-native'; | |
| import { node } from 'prop-types'; | |
| import { PanGestureHandler, State, PinchGestureHandler } from 'react-native-gesture-handler'; | |
| import Animated from 'react-native-reanimated'; | |
| import styles from './styles'; | |
| /** styles.js | |
| import { StyleSheet } from 'react-native'; |
| # This file contains the fastlane.tools configuration | |
| # You can find the documentation at https://docs.fastlane.tools | |
| # | |
| # For a list of all available actions, check out | |
| # | |
| # https://docs.fastlane.tools/actions | |
| # | |
| # For a list of all available plugins, check out | |
| # | |
| # https://docs.fastlane.tools/plugins/available-plugins |
If you are reading this tutorial please be aware that this is for advanced users that require a singleton pattern in their RN native module and some documentation detail is left out intentionally.
For the sake of this tutorial we will be using TestManager as our class.
| import { ObjectType, Field } from "@nestjs/graphql"; | |
| @ObjectType() | |
| export class PageInfo { | |
| @Field({ nullable: true }) | |
| startCursor: string; | |
| @Field({ nullable: true }) | |
| endCursor: string; |
| # This file contains the fastlane.tools configuration | |
| # You can find the documentation at https://docs.fastlane.tools | |
| # | |
| # For a list of all available actions, check out | |
| # | |
| # https://docs.fastlane.tools/actions | |
| # | |
| # For a list of all available plugins, check out | |
| # | |
| # https://docs.fastlane.tools/plugins/available-plugins |