Skip to content

Instantly share code, notes, and snippets.

View kishea's full-sized avatar
🎯
Focusing

Moses Kisya kishea

🎯
Focusing
View GitHub Profile
@kishea
kishea / send mail via Amazon SES shell script
Created February 17, 2022 02:00
Shell script to send email via amazon ses and also upload a zip file amazon S3
#!/bin/bash
# CONSTANTS
AWS_KEY="AWSKEY"
AWS_SECRET="U+CDjyzDPnBn/E//KEYPPP+oXkhIuYChCbbIW"
REGION=us-west-2
S3_BUCKET="s3buckeet"
S3_BUCKET_PATH="/"
S3_ACL="x-amz-acl:private"
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'package:shared_preferences/shared_preferences.dart';
void main() {
Firestore.instance.settings(timestampsInSnapshotsEnabled: true);
SharedPreferences.getInstance().then((prefs) {
runApp(MakanikaApp(prefs: prefs));
});
}