Add issue templates, funding, and details for building.
This commit is contained in:
@@ -0,0 +1 @@
|
||||
github: [Lattyware]
|
||||
@@ -0,0 +1,26 @@
|
||||
---
|
||||
name: Bug Report
|
||||
about: Create a report to help us fix a problem.
|
||||
title: ''
|
||||
labels: bug
|
||||
assignees: ''
|
||||
---
|
||||
|
||||
## Describe the bug
|
||||
A clear and concise description of what the bug is.
|
||||
Please copy and paste or screenshot any error you received.
|
||||
|
||||
|
||||
## How to reproduce the bug
|
||||
Steps to reproduce the behaviour:
|
||||
1. Sign in
|
||||
2. Go to the decks page
|
||||
3. …
|
||||
|
||||
|
||||
### Expected behaviour
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
|
||||
### Attachments
|
||||
If you—for example—uploaded a deck, and it went wrong, please attach the .deck.json5 file here.
|
||||
@@ -0,0 +1,11 @@
|
||||
---
|
||||
name: Feature Request
|
||||
about: Ask us to add a new feature.
|
||||
title: ''
|
||||
labels: enhancement
|
||||
assignees: ''
|
||||
---
|
||||
|
||||
## Describe the feature
|
||||
A clear and concise description of what the feature you would like is.
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
# [Many Decks][hosted]
|
||||
|
||||
[](https://github.com/Lattyware/manydecks/actions)
|
||||
[](https://github.com/Lattyware/manydecks/releases)
|
||||
[][docker-client]
|
||||
[][docker-server]
|
||||
[](LICENSE)
|
||||
|
||||
Many Decks is a free, open source deck source that can be used to host decks for [Massive Decks][md], a comedy party game based on
|
||||
@@ -25,7 +27,11 @@ Many Decks is open source software available under [the AGPLv3 license](LICENSE)
|
||||
|
||||
To use, [the hosted version][hosted] is easiest.
|
||||
|
||||
IF you wish to deploy your own version, the easiest way is to use the docker images, which can be found on Docker Hub:
|
||||
[Client][docker-client]/[Server][docker-server].
|
||||
|
||||
[docker-client]: https://hub.docker.com/r/massivedecks/manydecks-client
|
||||
[docker-server]: https://hub.docker.com/r/massivedecks/manydecks-server
|
||||
|
||||
## Contributing
|
||||
|
||||
|
||||
+4
-4
@@ -21,8 +21,8 @@ services:
|
||||
|
||||
server:
|
||||
container_name: server
|
||||
image: "manydecks/server:dev"
|
||||
build: "./server"
|
||||
image: "massivedecks/manydecks-server:latest"
|
||||
#build: "./server"
|
||||
depends_on:
|
||||
- storage
|
||||
environment:
|
||||
@@ -33,8 +33,8 @@ services:
|
||||
|
||||
client:
|
||||
container_name: client
|
||||
image: "manydecks/client:dev"
|
||||
build: "./client"
|
||||
image: "massivedecks/manydecks-client:latest"
|
||||
#build: "./client"
|
||||
depends_on:
|
||||
- server
|
||||
ports:
|
||||
|
||||
Reference in New Issue
Block a user