Skip to content

Commit c01063c

Browse files
committed
Minor changes
1 parent 255d472 commit c01063c

2 files changed

Lines changed: 27 additions & 6 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,5 @@
1414
**/Demo
1515

1616
**/*.nupkg
17+
18+
MANIFEST.md

README.md

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
1-
# Initium — Service Core Foundation
1+
<p align="center">
2+
<img src="https://raw.githubusercontent.com/imclint21/Initium/master/src/Initium/logo.png" height="100" alt="Initium" />
3+
</p>
24

3-
[![Publish NuGet](https://github.com/imclint21/Initium/actions/workflows/publish.yml/badge.svg?branch=master)](https://github.com/imclint21/Initium/actions/workflows/publish.yml)
4-
![DotNet](https://img.shields.io/badge/.NET-8.0%20LTS-blue)
5-
![MIT License](https://img.shields.io/badge/license-MIT-lightgrey.svg)
6-
[![NuGet Version](https://img.shields.io/nuget/v/Initium)](https://www.nuget.org/packages/Initium/)
5+
<h3 align="center">Initium</h3>
6+
7+
<p align="center">
8+
Service Core Foundation for .NET API development.
9+
</p>
10+
11+
<p align="center">
12+
<a href="https://github.com/imclint21/Initium/actions/workflows/publish.yml"><img src="https://github.com/imclint21/Initium/actions/workflows/publish.yml/badge.svg?branch=master" /></a>
13+
<a href="https://www.nuget.org/packages/Initium/"><img src="https://img.shields.io/nuget/v/Initium" /></a>
14+
<img src="https://img.shields.io/badge/.NET-8.0%20LTS-blue" />
15+
<img src="https://img.shields.io/badge/license-MIT-lightgrey.svg" />
16+
</p>
717

818
## Introduction
919

@@ -50,12 +60,21 @@ public class CoffeeService
5060
{
5161
var doSomethingResult = DoSomething();
5262
if (doSomethingResult == false) return doSomethingResult;
53-
63+
5464
return ServiceResult.Ok("The coffee is now DONE!");
5565
}
5666
}
5767
```
5868

69+
## Documentation
70+
71+
See the [docs/](docs/) folder for detailed documentation:
72+
73+
- [Getting Started](docs/getting-started.md)
74+
- [Service Results](docs/service-results.md)
75+
- [Controllers & Attributes](docs/controllers.md)
76+
- [Examples](docs/examples.md)
77+
5978
## Contribute to Initium
6079

6180
See [CONTRIBUTING.md](CONTRIBUTING.md) for best practices and instructions on setting up your development environment to work on Initium.

0 commit comments

Comments
 (0)