You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23-10Lines changed: 23 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,28 +7,41 @@ e.g. HTML Escape / URL Encoding / Base64 / MD5 / SHA-1 / CRC32 / and many other
7
7
[https://dencode.com/](https://dencode.com/)
8
8
9
9
## Usage
10
-
Install [Java SE Development Kit (JDK)](https://www.oracle.com/java/technologies/downloads/).
11
10
12
-
Open a shell or command line and execute the following commands on the project root directory.
11
+
### Use DenCode online:
12
+
You can use DenCode online without downloading it.
13
13
14
-
### Run on local machine:
14
+
[https://dencode.com/](https://dencode.com/)
15
15
16
-
```console
17
-
./gradlew runApp
16
+
### Run using Docker:
17
+
With [Docker](https://www.docker.com/), you can run DenCode wherever you want.
18
+
19
+
```bash
20
+
docker run -p 8080:8080 ghcr.io/mozq/dencode-web:latest
18
21
```
19
22
20
23
After startup, DenCode can be accessed at http://localhost:8080/ .
21
24
22
-
### Run using docker:
25
+
### Build using Gradle:
26
+
If you want to build DenCode from the source code yourself, use [Gradle](https://gradle.org/) within the project.
27
+
Install [Java SE Development Kit (JDK)](https://www.oracle.com/java/technologies/downloads/) and run the following command on the project root directory.
28
+
Build artifacts are stored in build/app/ directory.
29
+
23
30
```bash
24
-
docker run -p 8080:8080 ghcr.io/mozq/dencode-web:latest
31
+
./gradlew build
25
32
```
26
33
27
-
### Deploy to Google App Engine:
34
+
If you want to run DenCode as well, run the following command.
28
35
29
-
Install [Google Cloud SDK](https://cloud.google.com/sdk/) and execute the following commands. First two commands, `gcloud auth` and `gcloud config`, only needs to be executed for the first time.
36
+
```bash
37
+
./gradlew runApp
38
+
```
30
39
31
-
```console
40
+
### Deploy to Google App Engine:
41
+
Install [Google Cloud SDK](https://cloud.google.com/sdk/) and run the following commands.
42
+
First two commands, `gcloud auth` and `gcloud config`, only needs to be ran for the first time.
0 commit comments