From deca5b31e1a5da6ace114312224d5dfd9d8f5ce6 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Thu, 3 Aug 2023 09:12:47 +0200 Subject: [PATCH] Add form config for Feature Request issues --- .github/ISSUE_TEMPLATE/Feature_Request.md | 19 ------------------- .github/ISSUE_TEMPLATE/Feature_Request.yml | 16 ++++++++++++++++ CONTRIBUTING.md | 4 ++-- indocker | 2 +- 4 files changed, 19 insertions(+), 22 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/Feature_Request.md create mode 100644 .github/ISSUE_TEMPLATE/Feature_Request.yml diff --git a/.github/ISSUE_TEMPLATE/Feature_Request.md b/.github/ISSUE_TEMPLATE/Feature_Request.md deleted file mode 100644 index 5f3210c0..00000000 --- a/.github/ISSUE_TEMPLATE/Feature_Request.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -name: Feature request -about: Do you find shlink is missing some important feature that would make it more useful? -labels: feature ---- - - - -#### Summary - - diff --git a/.github/ISSUE_TEMPLATE/Feature_Request.yml b/.github/ISSUE_TEMPLATE/Feature_Request.yml new file mode 100644 index 00000000..bbba68de --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Feature_Request.yml @@ -0,0 +1,16 @@ +name: Feature request +description: Do you find shlink-web-client is missing some important feature that would make it more useful? +labels: ['feature'] +body: + - type: textarea + validations: + required: true + attributes: + label: Summary + value: '' + - type: textarea + validations: + required: true + attributes: + label: Use case + value: '' diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d6fa7bff..a9588871 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,7 +6,7 @@ You will also see how to ensure the code fulfills the expected code checks, and ## System dependencies -The project can be run inside a docker container through provided docker-compose configuration. +The project can be run inside a docker container through provided `docker compose` configuration. Because of this, the only actual dependencies are [docker](https://docs.docker.com/get-docker/) and [docker-compose](https://docs.docker.com/compose/install/). @@ -17,7 +17,7 @@ The first thing you need to do is fork the repository, and clone it in your loca Then you will have to follow these steps: * Copy the file `docker-compose.override.yml.dist` by also removing the `dist` extension. -* Start-up the project by running `docker-compose up`. +* Start-up the project by running `docker compose up`. Once this is finished, you will have the project exposed in port `3000` (http://localhost:3000). diff --git a/indocker b/indocker index 81147641..bacfda74 100755 --- a/indocker +++ b/indocker @@ -2,7 +2,7 @@ # Run docker container if it's not up yet if ! [[ $(docker ps | grep shlink_web_client_node) ]]; then - docker-compose up -d + docker compose up -d fi docker exec -it shlink_web_client_node /bin/sh -c "cd /home/shlink/www && $*"