Initial release of UI.

[?]
Aug 25, 2020, 4:03 AM
SFWL5626TREXK42DULCXFKKXRCYYGCPAELRZGIRLUMZBNZRAYW7QC

Dependencies

  • [2] PBD7LZYQ Postgres & auth are beginning to function.

Change contents

  • file addition: list_entries.sh (---r------)
    [2.1220]
    #!/bin/bash
    if [ -f ".env" ]; then
    source .env
    fi
    if [ -z "${AFTOK_HOST}" ]; then
    AFTOK_HOST="aftok.com"
    fi
    if [ -z "${USER}" ]; then
    read -p "Username: " USER
    echo
    fi
    if [ -z "${PID}" ]; then
    read -p "Project UUID: " PID
    echo
    fi
    curl --verbose --insecure --user $USER \
    --request GET \
    "https://$AFTOK_HOST/api/projects/$PID/logEntries?after=2020-01-01T00:00:00Z"