git_lfs_server 0.0.1 git_lfs_server: ^0.0.1 copied to clipboard
A simple git-lfs server.
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate git_lfs_server
Use it
The package has the following executables:
$ git-lfs-authenticate
$ git-lfs-server
$ git-lfs-server-install
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add git_lfs_server
With Flutter:
$ flutter pub add git_lfs_server
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
git_lfs_server: ^0.0.1
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:git_lfs_server/auth/auth_service.dart';
import 'package:git_lfs_server/git_lfs.dart';
import 'package:git_lfs_server/http_server/http_server.dart';
import 'package:git_lfs_server/logging.dart';
import 'package:git_lfs_server/util.dart';