This is an early stage project attempting to port JSON resume over to Go.
The scope has since change and now the server will host a copy of a user's resume. Recruiters will be given a expirable token with which they can login and view the candidate's private details.
There will be a CLI proxy from the client side, containing admin, member and guest levels of information.
At some point there will be the ability for other people to upload their own CVs and generate their own tokens for their own recruiters.
$ go get github.com/nii236/gopher-resume
CLI tool to generate CVs from the command line.
$ go run main.go process -name ExampleGuy
Web server with a REST API that generates CVs.
$ go run main.go serve
$ curl localhost:8080/?name=john%20guy
Name: john guy
Label:
Picture:
Email:
Phone:
Website:
Summary:
Location: { }
Profiles: []
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D