Brijesh's Git Server — env_helper @ a0e7d271eec9f534041350bb02e9eb5c43711837

until AWS builds a simple env import like vercel

why.html (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
<!doctype html>
<html lang="en">
    <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <script src="https://cdn.tailwindcss.com"></script>
        <title>Env Helper - Inspiration</title>
    </head>
    <body class="bg-neutral-800 pt-8 text-neutral-200">
        <div class="max-w-3xl mx-auto">
            <h1 class="text-2xl font-medium">
                The Inspiration Behind Env Helper
            </h1>
            <section class="my-8">
                <h2 class="text-xl font-medium mb-4">Why I Built This?</h2>
                <p class="mb-4">
                    I found myself repeatedly copying and pasting individual
                    keys and values from .env files when deploying applications
                    and became frustrated with this.
                </p>
                <p class="mb-4">
                    I like the experience of using Vercel, where you can copy an
                    entire .env file this tool to seperate keys and values from
                    .env file and let me copy them easily is a way for me
                    slightly improve my experience until the platforms I use
                    implement a similar feature.
                </p>
            </section>
            <section class="my-8">
                <h2 class="text-xl font-medium mb-4">
                    Isn't this extremely unsafe?
                </h2>
                <p class="mb-4">
                    Yes, it is unsafe. I made this site for my personal use and
                    while I use this even with my sensitive information, I
                    wouldn't recommend others to do so. But since this is just a
                    HTML file with a bit of JavaScript, you can see the code
                    yourself and run it locally if you want to.
                </p>
            </section>
            <a
                href="index.html"
                class="inline-flex items-center mt-4 bg-neutral-700 font-medium text-white px-2 py-1 rounded hover:bg-neutral-600 transition-colors duration-150"
            >
                <svg
                    xmlns="http://www.w3.org/2000/svg"
                    width="16"
                    height="16"
                    viewBox="0 0 24 24"
                    fill="none"
                    stroke="currentColor"
                    stroke-width="2"
                    stroke-linecap="round"
                    stroke-linejoin="round"
                    class="lucide lucide-link mr-2"
                >
                    <path
                        d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"
                    />
                    <path
                        d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"
                    />
                </svg>
                Back to Env Helper
            </a>
        </div>
    </body>
</html>