├── .gitattributes ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Dockerfile ├── LICENSE.md ├── README.md ├── docker-compose.yml ├── fts-hotels-index.json ├── mix-and-match.yml ├── scripts └── update-swagger ├── try-cb-dotnet.sln ├── try-cb-dotnet ├── Controllers │ ├── AirportsController.cs │ ├── FlightPathsController.cs │ ├── HotelController.cs │ └── UserController.cs ├── Helpers │ ├── AppSettings.cs │ └── GeoCoordinate.cs ├── Models │ ├── Airport.cs │ ├── BookFlightModel.cs │ ├── Flight.cs │ ├── Hotel.cs │ ├── LoginModel.cs │ ├── Result.cs │ ├── Route.cs │ └── User.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── AirportService.cs │ ├── AuthTokenService.cs │ ├── CouchbaseService.cs │ ├── FlightService.cs │ ├── HotelService.cs │ └── UserService.cs ├── appsettings.Development.json ├── appsettings.json ├── try-cb-dotnet.csproj └── wwwroot │ ├── index.html │ └── swagger.json └── wait-for-couchbase.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /fts-hotels-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/fts-hotels-index.json -------------------------------------------------------------------------------- /mix-and-match.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/mix-and-match.yml -------------------------------------------------------------------------------- /scripts/update-swagger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/scripts/update-swagger -------------------------------------------------------------------------------- /try-cb-dotnet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet.sln -------------------------------------------------------------------------------- /try-cb-dotnet/Controllers/AirportsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Controllers/AirportsController.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Controllers/FlightPathsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Controllers/FlightPathsController.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Controllers/HotelController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Controllers/HotelController.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Controllers/UserController.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Helpers/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Helpers/AppSettings.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Helpers/GeoCoordinate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Helpers/GeoCoordinate.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Models/Airport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Models/Airport.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Models/BookFlightModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Models/BookFlightModel.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Models/Flight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Models/Flight.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Models/Hotel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Models/Hotel.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Models/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Models/LoginModel.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Models/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Models/Result.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Models/Route.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Models/Route.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Models/User.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Program.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Properties/launchSettings.json -------------------------------------------------------------------------------- /try-cb-dotnet/Services/AirportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Services/AirportService.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Services/AuthTokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Services/AuthTokenService.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Services/CouchbaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Services/CouchbaseService.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Services/FlightService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Services/FlightService.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Services/HotelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Services/HotelService.cs -------------------------------------------------------------------------------- /try-cb-dotnet/Services/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/Services/UserService.cs -------------------------------------------------------------------------------- /try-cb-dotnet/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/appsettings.Development.json -------------------------------------------------------------------------------- /try-cb-dotnet/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/appsettings.json -------------------------------------------------------------------------------- /try-cb-dotnet/try-cb-dotnet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/try-cb-dotnet.csproj -------------------------------------------------------------------------------- /try-cb-dotnet/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/wwwroot/index.html -------------------------------------------------------------------------------- /try-cb-dotnet/wwwroot/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/try-cb-dotnet/wwwroot/swagger.json -------------------------------------------------------------------------------- /wait-for-couchbase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/try-cb-dotnet/HEAD/wait-for-couchbase.sh --------------------------------------------------------------------------------