├── Procfile ├── go.mod ├── go.sum ├── LICENSE └── README.md /Procfile: -------------------------------------------------------------------------------- 1 | web: gomfweb 2 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | // +heroku install willnorris.com/go/microformats/cmd/gomfweb 2 | 3 | module github.com/microformats/microformats-parser-website-go 4 | 5 | require ( 6 | golang.org/x/net v0.0.0-20180801234040-f4c29de78a2a 7 | willnorris.com/go/microformats v1.0.0 8 | ) 9 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | golang.org/x/net v0.0.0-20180801234040-f4c29de78a2a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= 2 | willnorris.com/go/microformats v0.0.0-20180913153613-2eb852e5ebac/go.mod h1:AXRtimOA0J5fDmM2sxlka4G6PNLWC4bCNJcZjLvFdDw= 3 | willnorris.com/go/microformats v1.0.0/go.mod h1:AXRtimOA0J5fDmM2sxlka4G6PNLWC4bCNJcZjLvFdDw= 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2017 Google 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Microformats Go Parser Website 2 | 3 | Website for Microformats Go parser (based on pin13.net by @aaronpk). 4 | https://go.microformats.io 5 | 6 | Heroku wrapper for the Go microformats demo app. 7 | 8 | ## gomfweb 9 | 10 | This is a standalone wrapper around the `gomfweb` tool for easy deployment to Heroku. 11 | Made by @willnorris. https://willnorris.com/go/gomfweb 12 | 13 | 14 | ## Deployment 15 | 16 | All commits to the `master` branch get auto-deployed to the live website (running on [Heroku](https://go.microformats.io)). 17 | 18 | 19 | ## Requirements 20 | 21 | - Go 1.8.7 22 | 23 | 24 | ## Installation 25 | 26 | Clone the repo: 27 | 28 | ``` 29 | git clone https://github.com/indieweb/microformats-go-parser-website.git 30 | cd microformats-go-parser-website 31 | ``` 32 | 33 | Install the dependencies: 34 | 35 | ``` 36 | TODO 37 | ``` 38 | 39 | Start the server: 40 | 41 | ``` 42 | gomfweb 43 | ``` 44 | 45 | Open the site in your browser: 46 | 47 | ``` 48 | TODO 49 | open http://localhost:3000 50 | ``` 51 | 52 | 53 | ## Authors 54 | 55 | - Will Norris / [@willnorris](https://github.com/willnorris) 56 | 57 | 58 | ## Contributions 59 | 60 | 1. Fork it 61 | 2. Get it running (see Installation above) 62 | 3. Create your feature branch (`git checkout -b my-new-feature`) 63 | 4. Commit your changes (`git commit -am 'Add some feature'`) 64 | 5. Push to the branch (`git push origin my-new-feature`) 65 | 6. Create new Pull Request 66 | 67 | If you find bugs, have feature requests or questions, please 68 | [file an issue](https://github.com/indieweb/microformats-go/issues). 69 | 70 | 71 | ## License 72 | 73 | Microformats Go Parser Website is licensed using the MIT license. 74 | 75 | For more, see [LICENSE](https://github.com/indieweb/microformats-parser-website-go/blob/master/LICENSE). 76 | --------------------------------------------------------------------------------