initializate client, server, shared

- initializated base structure of server
 - initializated base structure of client
 - initializated base structure of shared(lib for client and server)
This commit is contained in:
2026-04-03 22:25:31 +03:00
parent 4517f49879
commit 6f9c7f95bf
139 changed files with 4874 additions and 0 deletions

3
server/.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
# https://dart.dev/guides/libraries/private-files
# Created by `dart pub`
.dart_tool/

3
server/CHANGELOG.md Normal file
View File

@@ -0,0 +1,3 @@
## 1.0.0
- Initial version.

2
server/README.md Normal file
View File

@@ -0,0 +1,2 @@
A sample command-line application with an entrypoint in `bin/`, library code
in `lib/`, and example unit test in `test/`.

View File

@@ -0,0 +1,30 @@
# This file configures the static analysis results for your project (errors,
# warnings, and lints).
#
# This enables the 'recommended' set of lints from `package:lints`.
# This set helps identify many issues that may lead to problems when running
# or consuming Dart code, and enforces writing Dart using a single, idiomatic
# style and format.
#
# If you want a smaller set of lints you can change this to specify
# 'package:lints/core.yaml'. These are just the most critical lints
# (the recommended set includes the core lints).
# The core lints are also what is used by pub.dev for scoring packages.
include: package:lints/recommended.yaml
# Uncomment the following section to specify additional rules.
# linter:
# rules:
# - camel_case_types
# analyzer:
# exclude:
# - path/to/excluded/files/**
# For more information about the core and recommended set of lints, see
# https://dart.dev/go/core-lints
# For additional information about configuring this file, see
# https://dart.dev/guides/language/analysis-options

5
server/bin/server.dart Normal file
View File

@@ -0,0 +1,5 @@
import 'package:server/server.dart' as server;
void main(List<String> arguments) {
print('Hello world: ${server.calculate()}!');
}

3
server/lib/server.dart Normal file
View File

@@ -0,0 +1,3 @@
int calculate() {
return 6 * 7;
}

15
server/pubspec.yaml Normal file
View File

@@ -0,0 +1,15 @@
name: server
description: A sample command-line application.
version: 1.0.0
# repository: https://github.com/my_org/my_repo
environment:
sdk: ^3.11.1
# Add regular dependencies here.
dependencies:
path: ^1.9.0
dev_dependencies:
lints: ^6.0.0
test: ^1.25.6

View File

@@ -0,0 +1,8 @@
import 'package:server/server.dart';
import 'package:test/test.dart';
void main() {
test('calculate', () {
expect(calculate(), 42);
});
}