Browse Source

Extend Standard installation

dependabot/npm_and_yarn/web/prismjs-1.21.0
Max Schmitt 8 years ago
parent
commit
efe30eb71c
  1. 20
      README.md
  2. 2
      store/store.go

20
README.md

@ -18,11 +18,14 @@
### Standard
Since we don't provide prebuild binaries, you have to build it yourself. For that you need golang and git installed on your system.
```bash
git clone https://github.com/maxibanki/golang-url-shortener
go get -v ./...
go build
./golang-url-shortener
git clone https://github.com/maxibanki/golang-url-shortener # Clone repository
cd golang-url-shortener # Go into it
go get -v ./... # Fetch dependencies
go build # Build executable
./golang-url-shortener # Run it
```
### Docker Compose
@ -64,9 +67,6 @@ After you've done this, you need to set it as your standard URL Shortener. For t
- Authentification
- Deletion
- Github publishing
- Add shields:
- downloads
- travis
- godoc
- license
- Add Curl Examples
- Test docker-compose installation
- Spell checker

2
store/store.go

@ -1,4 +1,4 @@
// Package store provides support to intergate with the entries easily
// Package store provides support to intergate with the entries
package store
import (

Loading…
Cancel
Save