Init the project instant storage

This commit is contained in:
Sambo Chea 2021-03-26 08:18:41 +07:00
commit cb34cfbabe
7 changed files with 64 additions and 0 deletions

9
.gitignore vendored Normal file
View File

@ -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/

4
CHANGELOG.md Normal file
View File

@ -0,0 +1,4 @@
## 1.0.0
- Initial version, created by Stagehand
- Add and init the project with instant storage

9
README.md Normal file
View File

@ -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 <sombochea@cubetiqs.com>

14
analysis_options.yaml Normal file
View File

@ -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/**

3
bin/instant_storage.dart Normal file
View File

@ -0,0 +1,3 @@
void main(List<String> arguments) {
print('Just say hello to, Instant Storage!');
}

12
pubspec.lock Normal file
View File

@ -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"

13
pubspec.yaml Normal file
View File

@ -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