https://github.com/ombrelin/alkoholspiele
Self hostable drinking game
https://github.com/ombrelin/alkoholspiele
angular api-rest asp-net-core csharp typescript
Last synced: 5 months ago
JSON representation
Self hostable drinking game
- Host: GitHub
- URL: https://github.com/ombrelin/alkoholspiele
- Owner: Ombrelin
- Created: 2020-02-09T13:07:48.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-05-15T20:16:08.000Z (about 1 year ago)
- Last Synced: 2025-05-15T21:27:46.295Z (about 1 year ago)
- Topics: angular, api-rest, asp-net-core, csharp, typescript
- Language: C#
- Homepage:
- Size: 4.12 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Alkoholspiele
## The app
Alkohospiele is a simple webapp that implements the drinking game "Piccolo" with the ability to create custom games with custom jokes.
## Tech Stack
Backend :
- ASP .NET Core WebApi
- EF Core
- PostgreSQL
Frontend :
- Angular 8
- Angular Material
- Chart.js
## Docker Deployment
With docker-compose :
```yml
alkoholspiele:
image: ombrelin/alkoholspiele:1.0
container_name: alkoholspiele
ports:
- "80:80"
environment:
- DATABASE_URL=
restart: unless-stopped
```