Skip to content

Commit

Permalink
readme update for v1.0.0-beta.2 release and minor info update
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevatkm committed Dec 27, 2018
1 parent 350587f commit 5dc5522
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
<p align="center">
<img src="https://thumbai.app/static/img/thumbai-logo-dark-256.png" />
<p align="center">Go Mod Repository, Go Vanity and Proxy Server</p>
<p align="center">Go Mod Repository, Go Vanity Server and Proxy Server</p>
</p>
<p align="center">
<p align="center"><a href="https://travis-ci.org/thumbai/thumbai"><img src="https://travis-ci.com/thumbai/thumbai.svg?branch=master" alt="Build Status"></a> <a href="https://goreportcard.com/report/github.com/thumbai/thumbai"><img src="https://goreportcard.com/badge/github.com/thumbai/thumbai" alt="Go Report Card"></a> <a href="https://github.com/thumbai/thumbai/releases/latest"><img src="https://img.shields.io/badge/version-1.0.0--beta-blue.svg" alt="Release Version"></a> <a href="https://gophers.slack.com/messages/CEQJ9EJPR/"><img src="https://img.shields.io/badge/Slack-thumbai-4d394b.svg?logo=slack" alt="Slack #thumbai"></a></p>
<p align="center"><a href="https://travis-ci.org/thumbai/thumbai"><img src="https://travis-ci.com/thumbai/thumbai.svg?branch=master" alt="Build Status"></a> <a href="https://goreportcard.com/report/github.com/thumbai/thumbai"><img src="https://goreportcard.com/badge/github.com/thumbai/thumbai" alt="Go Report Card"></a> <a href="https://github.com/thumbai/thumbai/releases/latest"><img src="https://img.shields.io/badge/version-1.0.0--beta.2-blue.svg" alt="Release Version"></a> <a href="https://gophers.slack.com/messages/CEQJ9EJPR/"><img src="https://img.shields.io/badge/Slack-thumbai-4d394b.svg?logo=slack" alt="Slack #thumbai"></a></p>
</p>

## News

* [v1.0.0-beta](https://github.com/thumbai/thumbai/releases/latest) Initial public beta release on Dec 10, 2018.
* [v1.0.0-beta.2](https://github.com/thumbai/thumbai/releases/latest) Initial public beta release on Dec 26, 2018.
* [v1.0.0-beta](https://github.com/thumbai/thumbai/releases/tag/v1.0.0-beta) Initial public beta release on Dec 10, 2018.

## Features

Provides an ability to have your own-

* Go Modules Respository - for organization/individual, never loose dependency libraries.
* Go Vanity Service - Decouple SCM repository path from Go import path.
* Go Vanity Server - Decouple SCM repository path from Go import path.
* Simple Proxy Server - Hosted applications on the same box then simply proxy it behind.

Every feature is on-demand and could be used individually. All THUMBAI features fully utilized by `aahframework.org`, `aahframe.work` and also THUMBAI proxy replaced my nginx proxy server.
Expand Down
2 changes: 1 addition & 1 deletion app/datastore/datastore.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func Del(bucketName, key string) error {
// BucketKeys method returns all the bucket keys for given name.
func BucketKeys(name string) []string {
var keys []string
thumbaiDB.View(func(tx *bolt.Tx) error {
_ = thumbaiDB.View(func(tx *bolt.Tx) error {
b := tx.Bucket([]byte(name))
if err := b.ForEach(func(k, _ []byte) error {
keys = append(keys, string(k))
Expand Down
2 changes: 1 addition & 1 deletion views/pages/admin/gomod/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<label for="onDemandPublish">On-Demand Publish</label>
<textarea class="form-control rule-value" id="onDemandPublish" name="onDemandPublish" rows="7" placeholder="Enter module path per line. NOTE: By default thumbai automatically downloads the requested go module when unavailble on server. On-demand publish could be useful too :)" required></textarea>
<small id="onDemandPublishHelp" class="form-text text-muted">
Supported go module path syntax's are <a tabindex="0" role="button" data-toggle="popover" data-trigger="focus" data-content="aahframe.work@latest<br>aahframe.work@v0.12.0<br>aahframe.work@7e312af" data-html="true" data-placement="bottom"><i class="fas fa-question-circle"></i></a>
Supported go module path syntax's are <a tabindex="0" role="button" data-toggle="popover" data-trigger="focus" data-content="aahframe.work<br>aahframe.work@latest<br>aahframe.work@v0.12.2<br>aahframe.work@31fcc59" data-html="true" data-placement="bottom"><i class="fas fa-question-circle"></i></a>
</small>
<div id="onDemandPublishError" class="invalid-feedback">Required</div>
</div>
Expand Down

0 comments on commit 5dc5522

Please sign in to comment.