https://github.com/lukeuke/asp-game-api
https://github.com/lukeuke/asp-game-api
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/lukeuke/asp-game-api
- Owner: Lukeuke
- Created: 2022-06-15T18:09:14.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-20T11:56:51.000Z (almost 4 years ago)
- Last Synced: 2025-06-26T12:02:17.929Z (12 months ago)
- Language: C#
- Homepage:
- Size: 260 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GuessWord Server
GuessWord Server is a API made in ASP.NET, which provides:
- User login/registration with JWT authentication,
- ORM MSSQL Database,
- Entity Framework
> This API takes word from other api, and user has to guess the word, its simmilar to game called "Wordle"
## Installation
```bash
git clone https://github.com/Lukeuke/asp-game-api.git
```
- Go to ./Application folder
### Run with docker
still not supporting fully dockerized run, because of DataBase
```bash
docker build -t guesswordapi .
```
```bash
docker run -p 8080:80 guesswordapi
```
### Run with dotnet
- Change connection string to your DataBase
- Create Db called "GuessWordDb"
```bash
dotnet ef database update
```
- after this you can run this application
```bash
dotnet run
```
## Endpoints

## Authors
- [@Lukeuke](https://www.github.com/Lukeuke)