Skip to content

Commit bc457e1

Browse files
author
Temporary User
committed
Upgrading to dotnet 10
1 parent 4c9f4fc commit bc457e1

11 files changed

Lines changed: 95 additions & 95 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# SqlD
1+
# 🗄️ SqlD
22

33
<span><a href="https://github.com/RealOrko/sql-d/actions"><img src="https://github.com/realorko/sql-d/actions/workflows/dotnetcore.yml/badge.svg?branch=master" /></a></span>
44

5-
HTTP persistence using [Sqlite](https://sqlite.org).
5+
HTTP persistence using [Sqlite](https://sqlite.org) 🔗.
66

7-
[Documentation](https://github.com/RealOrko/sql-d/blob/master/docs/_.md).
7+
📚 [Documentation](https://github.com/RealOrko/sql-d/blob/master/docs/_.md).

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
1+
FROM mcr.microsoft.com/dotnet/sdk:10.0-preview AS build
22

33
WORKDIR /code
44
ADD . .
55
RUN --mount=type=cache,id=nuget,target=/root/.nuget/packages \
66
dotnet publish -c Release -o /output /code/src/sql-d.ui/SqlD.UI.csproj /p:GeneratePackageOnBuild=false
77

8-
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS run
8+
FROM mcr.microsoft.com/dotnet/aspnet:10.0-preview AS run
99
RUN mkdir -p /var/lib/sql-d/
1010
RUN chown app:app /var/lib/sql-d/
1111
#USER app

docs/about.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# SqlD Help - About
1+
# 📖 SqlD Help - About
22

33
<div align="right">
4-
<a href="https://github.com/RealOrko/sql-d/blob/master/docs/_.md#sqld-help---contents">[Back to Contents]</a>
4+
<a href="https://github.com/RealOrko/sql-d/blob/master/docs/_.md#sqld-help---contents">⬆️ [Back to Contents]</a>
55
</div>
66
<br/>
77

8-
An HTTP persistence API powered by [Sqlite](https://sqlite.org) written in .NET core. Its chief design goal is to be a low ceremony ephemeral storage mechanism that you can call using your favourite HTTP client with basic fault tolerant forwarding but can also deal with volume based writes using write node/reader node replication.
8+
An HTTP persistence API powered by [Sqlite](https://sqlite.org) 🔗 written in .NET core. Its chief design goal is to be a low ceremony ephemeral storage mechanism that you can call using your favourite HTTP client with basic fault tolerant forwarding but can also deal with volume based writes using write node/reader node replication.
99

1010
![Query](https://github.com/RealOrko/sql-d/blob/master/docs/images/sqld.ui/home-page-query.png)
1111

docs/building.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# SqlD Help - Building
1+
# 🔨 SqlD Help - Building
22

33
<div align="right">
4-
<a href="https://github.com/RealOrko/sql-d/blob/master/docs/_.md#sqld-help---contents">[Back to Contents]</a>
4+
<a href="https://github.com/RealOrko/sql-d/blob/master/docs/_.md#sqld-help---contents">⬆️ [Back to Contents]</a>
55
</div>
66

7-
* [Building](#building)
8-
* [Packaging](#packaging)
7+
* 🏗️ [Building](#building)
8+
* 📦 [Packaging](#packaging)
99

10-
## Building
10+
## 🏗️ Building
1111

1212
<div align="right">
13-
<a href="#sqld-help---building">[Back to Top]</a>
13+
<a href="#sqld-help---building">⬆️ [Back to Top]</a>
1414
</div>
1515
<br/>
1616

@@ -21,15 +21,15 @@ Builds are currently only supported on linux-x64 platforms. If you have Windows
2121
./scripts/build-dotnet.sh
2222
```
2323

24-
*See Also*:
24+
💡 *See Also*:
2525

2626
- [About](https://github.com/RealOrko/sql-d/blob/master/docs/about.md)
2727
- [Prerequisites](https://github.com/RealOrko/sql-d/blob/master/docs/prerequisites.md)
2828

29-
## Packaging
29+
## 📦 Packaging
3030

3131
<div align="right">
32-
<a href="#sqld-help---building">[Back to Top]</a>
32+
<a href="#sqld-help---building">⬆️ [Back to Top]</a>
3333
</div>
3434
<br/>
3535

docs/configuration.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
# SqlD Help - Configuration
1+
# ⚙️ SqlD Help - Configuration
22

33
<div align="right">
4-
<a href="https://github.com/RealOrko/sql-d/blob/master/docs/_.md#sqld-help---contents">[Back to Contents]</a>
4+
<a href="https://github.com/RealOrko/sql-d/blob/master/docs/_.md#sqld-help---contents">⬆️ [Back to Contents]</a>
55
</div>
66

7-
* [Defaults](#defaults)
8-
* [Registries](#registries)
9-
* [Services](#services)
7+
* 🎯 [Defaults](#defaults)
8+
* 🗂️ [Registries](#registries)
9+
* 🛠️ [Services](#services)
1010
* [Example](#services--example)
1111
* [Database](#services--database)
1212
* [Host/Port](#services--host--port)
1313
* [Tags](#services--tags)
1414
* [Pragma](#services--pragma)
1515
* [Forwarding](#services--forwarding)
1616

17-
## Defaults
17+
## 🎯 Defaults
1818

1919
<div align="right">
20-
<a href="#sqld-help---configuration">[Back to Top]</a>
20+
<a href="#sqld-help---configuration">⬆️ [Back to Top]</a>
2121
</div>
2222
<br/>
2323

docs/prerequisites.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# SqlD Help - Prerequisites
1+
# SqlD Help - Prerequisites
22

33
<div align="right">
4-
<a href="https://github.com/RealOrko/sql-d/blob/master/docs/_.md#sqld-help---contents">[Back to Contents]</a>
4+
<a href="https://github.com/RealOrko/sql-d/blob/master/docs/_.md#sqld-help---contents">⬆️ [Back to Contents]</a>
55
</div>
66

7-
## Dotnet Core
7+
## 🔧 Dotnet Core
88

99
Please make sure you have the latest [dotnet core SDK](https://dotnet.microsoft.com/download).
1010

11-
*See Also*:
11+
💡 *See Also*:
1212

1313
- [About](https://github.com/RealOrko/sql-d/blob/master/docs/about.md)
1414

15-
## Current Multi-OS Support
15+
## 💻 Current Multi-OS Support
1616

1717
At the moment due to restrictions on windows with file locking, this project does not support windows builds. You are better off building this in WSL.
1818

docs/readme.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# SqlD Help - Contents
1+
# 📚 SqlD Help - Contents
22

3-
* [About](https://github.com/RealOrko/sql-d/blob/master/docs/about.md)
4-
* [Prerequisites](https://github.com/RealOrko/sql-d/blob/master/docs/prerequisites.md)
5-
* [Building](https://github.com/RealOrko/sql-d/blob/master/docs/building.md)
6-
* [Executing](https://github.com/RealOrko/sql-d/blob/master/docs/executing.md)
7-
* [Configuration](https://github.com/RealOrko/sql-d/blob/master/docs/configuration.md)
8-
* [SqlD](https://github.com/RealOrko/sql-d/blob/master/docs/sqld.md)
9-
* [SqlD UI](https://github.com/RealOrko/sql-d/blob/master/docs/sqld-ui.md)
10-
* [SqlD UI API](https://github.com/RealOrko/sql-d/blob/master/docs/sqld-ui-api.md)
11-
* [License](https://github.com/RealOrko/sql-d/blob/master/LICENSE)
3+
* 📖 [About](https://github.com/RealOrko/sql-d/blob/master/docs/about.md)
4+
* [Prerequisites](https://github.com/RealOrko/sql-d/blob/master/docs/prerequisites.md)
5+
* 🔨 [Building](https://github.com/RealOrko/sql-d/blob/master/docs/building.md)
6+
* ▶️ [Executing](https://github.com/RealOrko/sql-d/blob/master/docs/executing.md)
7+
* ⚙️ [Configuration](https://github.com/RealOrko/sql-d/blob/master/docs/configuration.md)
8+
* 🗄️ [SqlD](https://github.com/RealOrko/sql-d/blob/master/docs/sqld.md)
9+
* 🖥️ [SqlD UI](https://github.com/RealOrko/sql-d/blob/master/docs/sqld-ui.md)
10+
* 🔌 [SqlD UI API](https://github.com/RealOrko/sql-d/blob/master/docs/sqld-ui-api.md)
11+
* 📄 [License](https://github.com/RealOrko/sql-d/blob/master/LICENSE)
1212

docs/roadmap.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
1-
# SqlD Help - Roadmap
1+
# 🗺️ SqlD Help - Roadmap
22

33
<div align="right">
4-
<a href="https://github.com/RealOrko/sql-d/blob/master/docs/_.md#sqld-help---contents">[Back to Contents]</a>
4+
<a href="https://github.com/RealOrko/sql-d/blob/master/docs/_.md#sqld-help---contents">⬆️ [Back to Contents]</a>
55
</div>
66

77
Here is a basic view of what is next on the roadmap.
88

9-
* [OAuth2](#OAuth2)
10-
* [HTTPS](#HTTPS)
11-
* [Containerisation](#Containerisation)
12-
* [Kubernetes](#Kubernetes)
9+
* 🔐 [OAuth2](#OAuth2)
10+
* 🔒 [HTTPS](#HTTPS)
11+
* 🐳 [Containerisation](#Containerisation)
12+
* ☸️ [Kubernetes](#Kubernetes)
1313

14-
## Roadmap
14+
## 🗺️ Roadmap
1515

1616
<div align="right">
17-
<a href="#sqld-help---roadmap">[Back to Top]</a>
17+
<a href="#sqld-help---roadmap">⬆️ [Back to Top]</a>
1818
</div>
1919
<br/>
2020

21-
### OAuth2
21+
### 🔐 OAuth2
2222

2323
One of the things lacking is the ability to implement standard HTTP controls around security. This will be OAuth2 based with bearer tokens.
2424

25-
### HTTPS
25+
### 🔒 HTTPS
2626

2727
Encryption for transport protocols are severely lacking in this project. Will be adding this soon.
2828

29-
### Containerisation
29+
### 🐳 Containerisation
3030

3131
There is distinct lack of support for deploying this into container orchestration environments, containers will be added to releases soon.
3232

33-
### Kubernetes
33+
### ☸️ Kubernetes
3434

3535
A helm chart for deploying this, with orchestration inside a cluster.

docs/sqld-ui-api.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# SqlD Help - SqlD UI API
1+
# 🔌 SqlD Help - SqlD UI API
22

33
<div align="right">
4-
<a href="https://github.com/RealOrko/sql-d/blob/master/docs/_.md#sqld-help---contents">[Back to Contents]</a>
4+
<a href="https://github.com/RealOrko/sql-d/blob/master/docs/_.md#sqld-help---contents">⬆️ [Back to Contents]</a>
55
</div>
66

7-
* [Discover API](#discover-api)
8-
* [Describe Table API](#describe-table-api)
9-
* [Query Table API](#query-table-api)
7+
* 🔍 [Discover API](#discover-api)
8+
* 📋 [Describe Table API](#describe-table-api)
9+
* 🔎 [Query Table API](#query-table-api)
1010

1111

12-
## Discover API
12+
## 🔍 Discover API
1313

1414
<div align="right">
15-
<a href="#sqld-help---sqld-ui-api">[Back to Top]</a>
15+
<a href="#sqld-help---sqld-ui-api">⬆️ [Back to Top]</a>
1616
</div>
1717
<br/>
1818

@@ -30,16 +30,16 @@ You can discover the API. This exposes links which allow you to discover all the
3030

3131
- http://localhost:5000/api
3232

33-
*See Also*:
33+
💡 *See Also*:
3434

3535
- [Executing SqlD.UI](https://github.com/RealOrko/sql-d/blob/master/docs/executing.md#sqldui)
3636

3737
![API - Root](https://github.com/RealOrko/sql-d/blob/master/docs/images/sqld.ui/api/api-root.png)
3838

39-
## Describe Table API
39+
## 📋 Describe Table API
4040

4141
<div align="right">
42-
<a href="#sqld-help---sqld-ui-api">[Back to Top]</a>
42+
<a href="#sqld-help---sqld-ui-api">⬆️ [Back to Top]</a>
4343
</div>
4444
<br/>
4545

@@ -59,16 +59,16 @@ An example for describing `master`.`newtable1`.
5959

6060
- http://localhost:5000/api/query/describe%20newtable1/http%3A%2F%2Flocalhost%3A50100%2F
6161

62-
*See Also*:
62+
💡 *See Also*:
6363

6464
- [Executing SqlD.UI](https://github.com/RealOrko/sql-d/blob/master/docs/executing.md#sqldui)
6565

6666
![API - Query](https://github.com/RealOrko/sql-d/blob/master/docs/images/sqld.ui/api/api-query.png)
6767

68-
## Query Table API
68+
## 🔎 Query Table API
6969

7070
<div align="right">
71-
<a href="#sqld-help---sqld-ui-api">[Back to Top]</a>
71+
<a href="#sqld-help---sqld-ui-api">⬆️ [Back to Top]</a>
7272
</div>
7373
<br/>
7474

docs/sqld-ui.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
# SqlD Help - SqlD UI
1+
# 🖥️ SqlD Help - SqlD UI
22

33
<div align="right">
4-
<a href="https://github.com/RealOrko/sql-d/blob/master/docs/_.md#sqld-help---contents">[Back to Contents]</a>
4+
<a href="https://github.com/RealOrko/sql-d/blob/master/docs/_.md#sqld-help---contents">⬆️ [Back to Contents]</a>
55
</div>
66

7-
* [Registered Servers](#registered-servers)
8-
* [Discovering Tables](#discovering-tables)
9-
* [Creating a Table](#creating-a-table)
10-
* [Inserting Rows](#inserting-rows)
11-
* [Querying a Table](#querying-a-table)
12-
* [Dropping a Table](#dropping-a-table)
7+
* 🌐 [Registered Servers](#registered-servers)
8+
* 🔍 [Discovering Tables](#discovering-tables)
9+
* [Creating a Table](#creating-a-table)
10+
* ✏️ [Inserting Rows](#inserting-rows)
11+
* 🔎 [Querying a Table](#querying-a-table)
12+
* 🗑️ [Dropping a Table](#dropping-a-table)
1313

14-
## Registered Servers
14+
## 🌐 Registered Servers
1515

1616
<div align="right">
17-
<a href="#sqld-help---sqld-ui">[Back to Top]</a>
17+
<a href="#sqld-help---sqld-ui">⬆️ [Back to Top]</a>
1818
</div>
1919
<br/>
2020

@@ -29,16 +29,16 @@ each individual instance of SqlD. The default configuration has 5 instances runn
2929

3030
![Query](https://github.com/RealOrko/sql-d/blob/master/docs/images/sqld.ui/home-page.png)
3131

32-
*See Also*:
32+
💡 *See Also*:
3333

3434
- [About](https://github.com/RealOrko/sql-d/blob/master/docs/about.md)
3535
- [Prerequisites](https://github.com/RealOrko/sql-d/blob/master/docs/prerequisites.md)
3636
- [Executing SqlD.UI](https://github.com/RealOrko/sql-d/blob/master/docs/executing.md#executing-sqldui)
3737

38-
## Discovering Tables
38+
## 🔍 Discovering Tables
3939

4040
<div align="right">
41-
<a href="#sqld-help---sqld-ui">[Back to Top]</a>
41+
<a href="#sqld-help---sqld-ui">⬆️ [Back to Top]</a>
4242
</div>
4343
<br/>
4444

@@ -47,16 +47,16 @@ You can query `sqlite_master` to find out which tables have been created on curr
4747

4848
![Query - Master Query](https://github.com/RealOrko/sql-d/blob/master/docs/images/sqld.ui/home-page-query.png)
4949

50-
*See Also*:
50+
💡 *See Also*:
5151

5252
- [About](https://github.com/RealOrko/sql-d/blob/master/docs/about.md)
5353
- [Prerequisites](https://github.com/RealOrko/sql-d/blob/master/docs/prerequisites.md)
5454
- [Executing SqlD.UI](https://github.com/RealOrko/sql-d/blob/master/docs/executing.md#executing-sqldui)
5555

56-
## Creating a Table
56+
## Creating a Table
5757

5858
<div align="right">
59-
<a href="#sqld-help---sqld-ui">[Back to Top]</a>
59+
<a href="#sqld-help---sqld-ui">⬆️ [Back to Top]</a>
6060
</div>
6161
<br/>
6262

@@ -65,33 +65,33 @@ The example below shows you how to create a table called `newtable1` with column
6565

6666
![Query - Create Table](https://github.com/RealOrko/sql-d/blob/master/docs/images/sqld.ui/home-page-create-table.png)
6767

68-
*See Also*:
68+
💡 *See Also*:
6969

7070
- [About](https://github.com/RealOrko/sql-d/blob/master/docs/about.md)
7171
- [Prerequisites](https://github.com/RealOrko/sql-d/blob/master/docs/prerequisites.md)
7272
- [Executing SqlD.UI](https://github.com/RealOrko/sql-d/blob/master/docs/executing.md#executing-sqldui)
7373

74-
## Inserting Rows
74+
## ✏️ Inserting Rows
7575

7676
<div align="right">
77-
<a href="#sqld-help---sqld-ui">[Back to Top]</a>
77+
<a href="#sqld-help---sqld-ui">⬆️ [Back to Top]</a>
7878
</div>
7979
<br/>
8080

8181
The example below shows you how to insert 5 rows into `newtable1`.
8282

8383
![Query - Insert Rows](https://github.com/RealOrko/sql-d/blob/master/docs/images/sqld.ui/home-page-insert-rows.png)
8484

85-
*See Also*:
85+
💡 *See Also*:
8686

8787
- [About](https://github.com/RealOrko/sql-d/blob/master/docs/about.md)
8888
- [Prerequisites](https://github.com/RealOrko/sql-d/blob/master/docs/prerequisites.md)
8989
- [Executing SqlD.UI](https://github.com/RealOrko/sql-d/blob/master/docs/executing.md#executing-sqldui)
9090

91-
## Querying a Table
91+
## 🔎 Querying a Table
9292

9393
<div align="right">
94-
<a href="#sqld-help---sqld-ui">[Back to Top]</a>
94+
<a href="#sqld-help---sqld-ui">⬆️ [Back to Top]</a>
9595
</div>
9696
<br/>
9797

0 commit comments

Comments
 (0)