This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:flutter/cupertino.dart'; | |
void main() { | |
runApp(const MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
const MyApp({Key? key}) : super(key: key); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# deploys the distribution directory of a repo to a remote host | |
# remote host needs to be configured in .ssh/config with | |
# public key authentication, use LogLevel ERROR | |
# remote host must only have ls, rm and mkdir installed | |
# no other tools are needed on the remote host | |
# distribution directory must contain only files to be deployed | |
# only new files are transferred (using a saved checksum for |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# deploys the distribution directory of a repo to a remote host | |
# remote host needs to be configured in .ssh/config with | |
# public key authentication, use LogLevel ERROR | |
# remote host must only have ls, rm and mkdir installed | |
# no other tools are needed on the remote host | |
# distribution directory must contain only files to be deployed | |
# only new files are transferred (using a saved checksum for |