https://github.com/beyluta/zbw-couch-db
https://github.com/beyluta/zbw-couch-db
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/beyluta/zbw-couch-db
- Owner: beyluta
- Created: 2025-01-20T10:10:07.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2025-01-20T10:24:09.000Z (4 months ago)
- Last Synced: 2025-02-03T08:53:54.653Z (4 months ago)
- Language: C#
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CouchDB Demo
This repository contains a simple .NET console application demonstrating basic CRUD operations against a CouchDB instance.
## Prerequisites
- [.NET 6 SDK](https://dotnet.microsoft.com/download/dotnet/6.0) (or higher)
- An instance of [CouchDB](https://couchdb.apache.org/) running and accessible
- Valid CouchDB credentials## Setup
1. **Clone the repository** or download the code.
2. **Open `Program.cs`** and set the `RemoteUrl` to your CouchDB endpoint.
3. **Set the `Credentials`** to your `:` for basic auth.```csharp
private static string RemoteUrl = "http://localhost:5984/your_database";
private static string Credentials = "username:password";
```