From this post on the IntelliPaat forum.
This guide assumes that MongoDB Community was installed on macOS Catalina using brew install mongodb-community@4.2. Refer to MongoDB Manual: Install on MacOS for installation instructions.
| // Make sure to install cally via npm, CDN or importmap. | |
| // Example usage: <input type="date" class="input" name="dob" data-controller="cally"> | |
| import { Controller } from "@hotwired/stimulus"; | |
| import "cally"; | |
| export default class extends Controller { | |
| connect() { | |
| this.element.addEventListener("click", this.open.bind(this)); | |
| } |
| name: Flutter CI | |
| # This workflow is triggered on pushes to the repository. | |
| on: | |
| push: | |
| branches: | |
| - master | |
| # on: push # Default will running for every branch. |
From this post on the IntelliPaat forum.
This guide assumes that MongoDB Community was installed on macOS Catalina using brew install mongodb-community@4.2. Refer to MongoDB Manual: Install on MacOS for installation instructions.
| // MIT License | |
| // | |
| // Copyright (c) 2023 Simon Lightfoot | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the "Software"), to deal | |
| // in the Software without restriction, including without limitation the rights | |
| // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| // copies of the Software, and to permit persons to whom the Software is | |
| // furnished to do so, subject to the following conditions: |
| ////////////////////////////// | |
| // | |
| // 2019, roipeker.com | |
| // screencast - demo simple image: | |
| // https://youtu.be/EJyRH4_pY8I | |
| // | |
| // screencast - demo snapshot: | |
| // https://youtu.be/-LxPcL7T61E | |
| // | |
| ////////////////////////////// |
| import 'package:flutter/material.dart'; | |
| import 'package:rect_getter/rect_getter.dart'; | |
| void main() => runApp(new MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return new MaterialApp( | |
| title: 'Visible Demo', |
| fastlane_version "2.84.0" | |
| xcversion(version: "9.2") | |
| default_platform :ios | |
| lane :certificates do | |
| match( | |
| app_identifier: ["com.jimdo.boost"], | |
| type: "appstore", | |
| readonly: true) |
type below:
brew update
brew install redis
To have launchd start redis now and restart at login:
brew services start redis
It's important to note that running this reset will drop any existing data you have in the application
heroku restartheroku pg:reset DATABASE (no need to change the DATABASE)heroku run rake db:migrateheroku run rake db:seed (if you have seed)One liner