Sign inSign up

erroneousboat/resume

By erroneousboat

Updated almost 7 years ago

Create an online resume that can be accessed by a `curl` command.

Image
0

293

erroneousboat/resume repository overview

Resume

Create an online resume that can be accessed by a curl command.

Example:

Screenshot

Usage

Docker
$ docker run -p 80:80 erroneousboat/resume
$ curl http://localhost/resume
Command line

You can also run this application from the commandline, and I provided a binary for linux amd64 based systems here.

Configuration

You'll be able to configure some settings, mainly:

VarExplanation
PORTset the port on which the application will be served
PATHset the url path
USERset username for basic authentication
PASSset password for basic authentication

A full example:

$ docker run -p 8080:8080 \
    --env PORT=8080 \
    --env PATH=/resume \
    --env USER=show \
    --env PASS=me \
    -v path-to-resume.tmpl:/resume.tmpl \
    erroneousboat/resume

$ curl http://localhost:8080/resume -u show:me

Template

The resume.tmpl has an example of how you could structure your resume. To see what colors you'll be able to use, inspect the colors.go file.

For more color styles, you can use the function {{.ColorCode "your-style-here"}} in the template. See https://github.com/mgutz/ansi#style-format for the style format.

Tag summary

Content type

Image

Digest

Size

7.8 MB

Last updated

almost 7 years ago

docker pull erroneousboat/resume