commit cb34cfbabec546d4ec36b5244b5c2ab6c83783f2 Author: Sambo Chea Date: Fri Mar 26 08:18:41 2021 +0700 Init the project instant storage 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