Skip to content

Commit

Permalink
Add form config for Feature Request issues
Browse files Browse the repository at this point in the history
  • Loading branch information
acelaya committed Aug 3, 2023
1 parent 6fe5c4d commit deca5b3
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 22 deletions.
19 changes: 0 additions & 19 deletions .github/ISSUE_TEMPLATE/Feature_Request.md

This file was deleted.

16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/Feature_Request.yml
Original file line number Diff line number Diff line change
@@ -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: '<!-- Describe the new feature you would like to request. -->'
- type: textarea
validations:
required: true
attributes:
label: Use case
value: '<!-- Explain why do you think this feature would be useful, and what problems would it help to solve. -->'
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).

Expand All @@ -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).

Expand Down
2 changes: 1 addition & 1 deletion indocker
Original file line number Diff line number Diff line change
Expand Up @@ -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 && $*"

0 comments on commit deca5b3

Please sign in to comment.