add: adding project structure

This commit is contained in:
Patrick Stewart 2024-06-09 19:25:12 -07:00
parent 68f5e8a1c1
commit 99dab7fa2c
22 changed files with 82 additions and 0 deletions

0
.editorconfig Normal file
View file

0
.gitattributes vendored Normal file
View file

0
.github/.gitkeep vendored Normal file
View file

0
.publishable Normal file
View file

0
.toolversion Normal file
View file

0
AUTHORS.md Normal file
View file

0
CHANGELOG.md Normal file
View file

0
CODE_OF_CONDUCT.md Normal file
View file

0
CONTRIBUTING.md Normal file
View file

0
SECURITY.md Normal file
View file

0
VFF_VERSION Normal file
View file

0
config/.gitkeep Normal file
View file

14
devbox.json Normal file
View file

@ -0,0 +1,14 @@
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.11.0/.schema/devbox.schema.json",
"packages": ["dart@latest"],
"shell": {
"init_hook": [
"echo 'Welcome to devbox!' > /dev/null"
],
"scripts": {
"test": [
"echo \"Error: no test specified\" && exit 1"
]
}
}
}

53
devbox.lock Normal file
View file

@ -0,0 +1,53 @@
{
"lockfile_version": "1",
"packages": {
"dart@latest": {
"last_modified": "2024-06-03T07:19:07Z",
"resolved": "github:NixOS/nixpkgs/4a4ecb0ab415c9fccfb005567a215e6a9564cdf5#dart",
"source": "devbox-search",
"version": "3.4.2",
"systems": {
"aarch64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/9piqr817cdsgmz31m8q723lxhcpgqsa4-dart-3.4.2",
"default": true
}
],
"store_path": "/nix/store/9piqr817cdsgmz31m8q723lxhcpgqsa4-dart-3.4.2"
},
"aarch64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/1j3h5yqxvgzakv5gir1ssg7wggwxhmsd-dart-3.4.2",
"default": true
}
],
"store_path": "/nix/store/1j3h5yqxvgzakv5gir1ssg7wggwxhmsd-dart-3.4.2"
},
"x86_64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/k8a6gkss3s19p5dhbzgbdqqk5b8qzd7d-dart-3.4.2",
"default": true
}
],
"store_path": "/nix/store/k8a6gkss3s19p5dhbzgbdqqk5b8qzd7d-dart-3.4.2"
},
"x86_64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/wbj1csi5fk2w99aiglwgg1mv406pw4pn-dart-3.4.2",
"default": true
}
],
"store_path": "/nix/store/wbj1csi5fk2w99aiglwgg1mv406pw4pn-dart-3.4.2"
}
}
}
}
}

0
docs/.gitkeep Normal file
View file

0
example/.gitkeep Normal file
View file

0
packages/.gitkeep Normal file
View file

15
pubspec.yaml Normal file
View file

@ -0,0 +1,15 @@
name: vieofabric_framework
description: The VieoFabric Framework
version: 1.0.0
repository: https://github.com/vieolab/framework
environment:
sdk: ^3.4.0
# Add regular dependencies here.
dependencies:
# path: ^1.8.0
dev_dependencies:
lints: ^3.0.0
test: ^1.24.0

0
scripts/.gitkeep Normal file
View file

0
stubs/.gitkeep Normal file
View file

0
test/.gitkeep Normal file
View file

0
tool/.gitkeep Normal file
View file