Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spilth/cayarpshay
Pig Latin Translator in C#
https://github.com/spilth/cayarpshay
c-sharp pig-latin
Last synced: about 2 months ago
JSON representation
Pig Latin Translator in C#
- Host: GitHub
- URL: https://github.com/spilth/cayarpshay
- Owner: spilth
- Created: 2022-02-11T02:49:06.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-13T21:11:31.000Z (almost 3 years ago)
- Last Synced: 2023-03-10T22:03:25.829Z (almost 2 years ago)
- Topics: c-sharp, pig-latin
- Language: C#
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cay Arpshay
Pig Latin translation library, command-line interface and Web API written in C#
## Getting Started
### Check out the Project
```bash
$ git clone [email protected]:spilth/CayArpshay.git
$ cd CayArpshay
```### Run the Tests
```bash
$ dotnet test ClassLibTests
```### Build and Run the Command-Line Interface
```bash
$ dotnet build
$ ./Console/bin/Debug/net6.0/piglatin apple
```### Run and Use the Web API
```bash
$ dotnet dev-certs https --trust # Trust development HTTPS certificates
$ dotnet run --project WebApi
```Then in a new terminal tab/window run the following:
```bash
$ open https://localhost:7068/swagger/
$ curl -X GET "https://localhost:7068/Translation?english=apple" -H "accept: text/plain"
```