mozq / dencode-web

Source code of DenCode.
https://dencode.com
Apache License 2.0
69 stars 14 forks source link

dencode-web

DenCode is a web application for encoding and decoding values.
e.g. HTML Escape / URL Encoding / Base64 / MD5 / SHA-1 / CRC32 / and many other String, Number, DateTime, Color, Cipher, Hash formats

Website

https://dencode.com/

Usage

Install Java SE Development Kit (JDK).

Open a shell or command line and execute the following commands on the project root directory.

Run on local machine:

./gradlew appRunStage

After startup, DenCode can be accessed at http://localhost:8080/ .

Deploy to Google App Engine:

Install Google Cloud SDK and execute the following commands. gcloud commands only needs to be executed for the first time.

gcloud auth login
gcloud config set project {PROJECT_ID}
./gradlew appengineDeploy

(Please replace {PROJECT_ID} to your own project id.)

Supported encoding

I18n support

DenCode supports English (en), Japanese (ja) and Russian (ru). If you want to add other languages, please add or modify the following source code.

How to add another encoder and decoder

If you want to add another encoder and decoder, please add or modify the following source code.

Client applications