From cb34cfbabec546d4ec36b5244b5c2ab6c83783f2 Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Fri, 26 Mar 2021 08:18:41 +0700 Subject: [PATCH] Init the project instant storage --- .gitignore | 9 +++++++++ CHANGELOG.md | 4 ++++ README.md | 9 +++++++++ analysis_options.yaml | 14 ++++++++++++++ bin/instant_storage.dart | 3 +++ pubspec.lock | 12 ++++++++++++ pubspec.yaml | 13 +++++++++++++ 7 files changed, 64 insertions(+) create mode 100644 .gitignore create mode 100644 CHANGELOG.md create mode 100644 README.md create mode 100644 analysis_options.yaml create mode 100644 bin/instant_storage.dart create mode 100644 pubspec.lock create mode 100644 pubspec.yaml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3d64647 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +# Files and directories created by pub +.dart_tool/ +.packages + +# Conventional directory for build outputs +build/ + +# Directory created by dartdoc +doc/api/ diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..bb918dc --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,4 @@ +## 1.0.0 + +- Initial version, created by Stagehand +- Add and init the project with instant storage \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..5e3adf5 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# Instant Storage +- [ ] Cluster with pair values. +- [ ] Support with http request for balance data response. +- [ ] Sync data pair +- [ ] Allow custom configuration for storage config +- [ ] Multiple storage adapters + +# Contributors +- Sambo Chea diff --git a/analysis_options.yaml b/analysis_options.yaml new file mode 100644 index 0000000..a686c1b --- /dev/null +++ b/analysis_options.yaml @@ -0,0 +1,14 @@ +# Defines a default set of lint rules enforced for +# projects at Google. For details and rationale, +# see https://github.com/dart-lang/pedantic#enabled-lints. +include: package:pedantic/analysis_options.yaml + +# For lint rules and documentation, see http://dart-lang.github.io/linter/lints. +# Uncomment to specify additional rules. +# linter: +# rules: +# - camel_case_types + +analyzer: +# exclude: +# - path/to/excluded/files/** diff --git a/bin/instant_storage.dart b/bin/instant_storage.dart new file mode 100644 index 0000000..bf40574 --- /dev/null +++ b/bin/instant_storage.dart @@ -0,0 +1,3 @@ +void main(List arguments) { + print('Just say hello to, Instant Storage!'); +} diff --git a/pubspec.lock b/pubspec.lock new file mode 100644 index 0000000..dee8ff1 --- /dev/null +++ b/pubspec.lock @@ -0,0 +1,12 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + pedantic: + dependency: "direct dev" + description: + name: pedantic + url: "https://pub.dartlang.org" + source: hosted + version: "1.11.0" +sdks: + dart: ">=2.12.0-0 <3.0.0" diff --git a/pubspec.yaml b/pubspec.yaml new file mode 100644 index 0000000..0b0d2ad --- /dev/null +++ b/pubspec.yaml @@ -0,0 +1,13 @@ +name: instant_storage +description: A simple command-line application. +# version: 1.0.0 +# homepage: https://www.example.com + +environment: + sdk: '>=2.10.0 <3.0.0' + +#dependencies: +# path: ^1.7.0 + +dev_dependencies: + pedantic: ^1.9.0