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 ### 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 ```bash
git clone https://github.com/maxibanki/golang-url-shortener git clone https://github.com/maxibanki/golang-url-shortener # Clone repository
go get -v ./... cd golang-url-shortener # Go into it
go build go get -v ./... # Fetch dependencies
./golang-url-shortener go build # Build executable
./golang-url-shortener # Run it
``` ```
### Docker Compose ### Docker Compose
@ -64,9 +67,6 @@ After you've done this, you need to set it as your standard URL Shortener. For t
- Authentification - Authentification
- Deletion - Deletion
- Github publishing - Add Curl Examples
- Add shields: - Test docker-compose installation
- downloads - Spell checker
- travis
- godoc
- license

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 package store
import ( import (

Loading…
Cancel
Save