diff --git a/.travis.yml b/.travis.yml index aa70f1e..444fe63 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: go go: - - 1.9 + - stable services: - docker install: diff --git a/README.md b/README.md index 23278a1..d5a17ec 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ - Easy [ShareX](https://github.com/ShareX/ShareX) integration - Dockerizable -## [Webinterface](https://s.b0n.pl) +## [Webinterface](https://so.sh0rt.cat) ![Short URLs](https://user-images.githubusercontent.com/17984549/32700384-955d9336-c7c4-11e7-9fab-4141a86a375c.png) diff --git a/docker-compose.yml b/docker-compose.yml index d319f2f..445b91c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,10 +6,10 @@ golang_url_shortener: - ./data:/data environment: - GUS_BASE_URL=https://s.b0n.pl - - GUS_GOOGLE_CLIENTID= - - GUS_GOOGLE_CLIENTSECRET= - - GUS_GITHUB_CLIENTID= - - GUS_GITHUB_CLIENTSECRET= - - GUS_MICROSOFT_CLIENTID= - - GUS_MICROSOFT_CLIENTSECRET= + - GUS_GOOGLE_CLIENT_ID= + - GUS_GOOGLE_CLIENT_SECRET= + - GUS_GITHUB_CLIENT_ID= + - GUS_GITHUB_CLIENT_SECRET= + - GUS_MICROSOFT_CLIENT_ID= + - GUS_MICROSOFT_CLIENT_SECRET= restart: always diff --git a/static/package.json b/static/package.json index c45c192..6f95eec 100644 --- a/static/package.json +++ b/static/package.json @@ -17,12 +17,12 @@ "react-moment": "^0.6.8", "react-prism": "^4.3.1", "react-qr-svg": "^2.1.0", - "react-responsive": "^4.0.2", + "react-responsive": "^4.0.3", "react-router": "^4.2.0", "react-router-dom": "^4.2.2", "react-scripts": "1.0.17", "semantic-ui-css": "^2.2.12", - "semantic-ui-react": "^0.76.0", + "semantic-ui-react": "^0.77.0", "toastr": "^2.1.2" }, "scripts": { diff --git a/store/store.go b/store/store.go index a38f7ac..be1f785 100644 --- a/store/store.go +++ b/store/store.go @@ -61,7 +61,7 @@ var ErrEntryIsExpired = errors.New("entry is expired") var ( shortedURLsBucket = []byte("shorted") - shortedIDsToUserBucket = []byte("shorted2IDs") + shortedIDsToUserBucket = []byte("shorted2Users") ) // New initializes the store with the db