Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# tarantool-dnx

[![Join the chat at https://gitter.im/aensidhe/tarantool-dnx](https://badges.gitter.im/aensidhe/tarantool-dnx.svg)](https://gitter.im/aensidhe/tarantool-dnx?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
# tarantool-csharp

Dotnet client for Tarantool NoSql database.

Expand All @@ -13,15 +11,19 @@ Dotnet client for Tarantool NoSql database.

Simpliest way to start using Tarantool-csharp in your project is to install it from [Nuget](https://www.nuget.org/packages/Tarantool.CSharp/).

# Demo

[We have a small demo](https://github.com/progaudi/tarantool-csharp/blob/master/samples/docker-compose/). It illustrates usage of library in aspnet core with docker-compose. Docker 1.12 is preferred.

# Usage

You can find basic usage scenarios in [index](https://github.com/aensidhe/tarantool-csharp/blob/master/tests/tarantool.client.tests/Index/Smoke.cs) and [space](https://github.com/aensidhe/tarantool-csharp/blob/master/tests/tarantool.client.tests/Space/Smoke.cs) smoke tests.
You can find basic usage scenarios in [index](https://github.com/progaudi/tarantool-csharp/blob/master/tests/tarantool.client.tests/Index/Smoke.cs) and [space](https://github.com/progaudi/tarantool-csharp/blob/master/tests/tarantool.client.tests/Space/Smoke.cs) smoke tests.

# Build statuses for master branch

Windows build status:

[![Windows build status](https://ci.appveyor.com/api/projects/status/2iat2pxjuftk0xvn/branch/master?svg=true)](https://ci.appveyor.com/project/aensidhe/tarantool-csharp/branch/master)
[![Windows build status](https://ci.appveyor.com/api/projects/status/2iat2pxjuftk0xvn/branch/master?svg=true)](https://ci.appveyor.com/project/progaudi/tarantool-csharp/branch/master)


Right now Linux and OSX support are dropped until dotnet-core stabilization.
10 changes: 9 additions & 1 deletion samples/docker-compose/dotnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,12 @@ We've made this demo to demonstrate that out client work in asp.net core docker,

This code is not supposed to be used in production environment due to lack of error handling and dumping stacktraces on the homepage of site.

Project generated by [asp.net core scaffolding](https://docs.asp.net/en/latest/tutorials/your-first-mac-aspnet.html) and reduced to minimum to demonstrate Tarantool client capabilities.
Project generated by [asp.net core scaffolding](https://docs.asp.net/en/latest/tutorials/your-first-mac-aspnet.html) and reduced to minimum to demonstrate Tarantool client capabilities.

## How to run

```
docker-compose up -d --build
```

Point your browser to http://localhost:5000/
4 changes: 2 additions & 2 deletions src/tarantool.client/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"authors": [ "roman-kozachenko", "aensidhe" ],
"packOptions": {
"tags": [ "tarantool", "csharp" ],
"projectUrl": "https://github.com/aensidhe/tarantool-csharp",
"licenseUrl": "https://raw.githubusercontent.com/aensidhe/tarantool-csharp/master/LICENSE"
"projectUrl": "https://github.com/progaudi/tarantool-csharp",
"licenseUrl": "https://raw.githubusercontent.com/progaudi/tarantool-csharp/master/LICENSE"
},

"frameworks": {
Expand Down
4 changes: 2 additions & 2 deletions tests/tarantool.client.tests/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"authors": [ "roman-kozachenko", "aensidhe" ],
"packOptions": {
"tags": [ "tarantool", "csharp", "tests" ],
"projectUrl": "https://github.com/aensidhe/tarantool-csharp",
"licenseUrl": "https://raw.githubusercontent.com/aensidhe/tarantool-csharp/master/LICENSE"
"projectUrl": "https://github.com/progaudi/tarantool-csharp",
"licenseUrl": "https://raw.githubusercontent.com/progaudi/tarantool-csharp/master/LICENSE"
},
"testRunner": "xunit",
"frameworks": {
Expand Down