https://github.com/spilth/cayarpshay
Pig Latin Translator in C#
https://github.com/spilth/cayarpshay
c-sharp pig-latin
Last synced: 9 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 (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-13T21:11:31.000Z (over 4 years ago)
- Last Synced: 2025-06-15T08:54:48.619Z (about 1 year 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 git@github.com: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"
```