Commit 5dab577 1 parent 9ef47ab commit 5dab577 Copy full SHA for 5dab577
File tree 12 files changed +21
-21
lines changed
12 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 1
1
FROM calavera/go-glide:v0.12.2
2
2
3
- ADD . /go/src/github.com/netlify/commerce
3
+ ADD . /go/src/github.com/netlify/netlify- commerce
4
4
5
- RUN cd /go/src/github.com/netlify/commerce && make deps build && mv commerce /usr/local/bin/
5
+ RUN cd /go/src/github.com/netlify/netlify- commerce && make deps build && mv netlify- commerce /usr/local/bin/
6
6
7
- CMD ["commerce" ]
7
+ CMD ["netlify- commerce" ]
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ features. Currently it enables VAT calculations on a per country/product type ba
57
57
58
58
The reason we make you include the file in the static site, is that you'll need to do the same
59
59
VAT calculations client side during checkout to be able to show this to the user. The
60
- [ commerce-js] ( https://github.com/netlify/commerce-js ) client library can help you with
60
+ [ commerce-js] ( https://github.com/netlify/netlify- commerce-js ) client library can help you with
61
61
this.
62
62
63
63
Here's an example settings file:
@@ -83,4 +83,4 @@ tax has been included in that product.
83
83
84
84
# JavaScript Client Library
85
85
86
- The easiest way to use Netlify Commerce is with [ commerce-js] ( https://github.com/netlify/commerce-js ) .
86
+ The easiest way to use Netlify Commerce is with [ commerce-js] ( https://github.com/netlify/netlify- commerce-js ) .
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ import (
11
11
jwt "github.com/dgrijalva/jwt-go"
12
12
"github.com/guregu/kami"
13
13
"github.com/jinzhu/gorm"
14
- "github.com/netlify/commerce/conf"
15
- "github.com/netlify/commerce/mailer"
14
+ "github.com/netlify/netlify- commerce/conf"
15
+ "github.com/netlify/netlify- commerce/mailer"
16
16
"github.com/rs/cors"
17
17
)
18
18
Original file line number Diff line number Diff line change 5
5
"net/http"
6
6
7
7
jwt "github.com/dgrijalva/jwt-go"
8
- "github.com/netlify/commerce/conf"
8
+ "github.com/netlify/netlify- commerce/conf"
9
9
"golang.org/x/net/context"
10
10
)
11
11
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
11
11
"github.com/guregu/kami"
12
12
"github.com/jinzhu/gorm"
13
13
"github.com/mattes/vat"
14
- "github.com/netlify/commerce/models"
14
+ "github.com/netlify/netlify- commerce/models"
15
15
"github.com/pborman/uuid"
16
16
17
17
"golang.org/x/net/context"
Original file line number Diff line number Diff line change 6
6
"net/http"
7
7
8
8
"github.com/guregu/kami"
9
- "github.com/netlify/commerce/models"
9
+ "github.com/netlify/netlify- commerce/models"
10
10
stripe "github.com/stripe/stripe-go"
11
11
"github.com/stripe/stripe-go/charge"
12
12
"golang.org/x/net/context"
Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ import (
7
7
"github.com/spf13/cobra"
8
8
stripe "github.com/stripe/stripe-go"
9
9
10
- "github.com/netlify/commerce/api"
11
- "github.com/netlify/commerce/conf"
12
- "github.com/netlify/commerce/mailer"
13
- "github.com/netlify/commerce/models"
10
+ "github.com/netlify/netlify- commerce/api"
11
+ "github.com/netlify/netlify- commerce/conf"
12
+ "github.com/netlify/netlify- commerce/mailer"
13
+ "github.com/netlify/netlify- commerce/models"
14
14
)
15
15
16
16
// RootCmd will run the log streamer
Original file line number Diff line number Diff line change 1
- package : github.com/netlify/commerce
1
+ package : github.com/netlify/netlify- commerce
2
2
import :
3
3
- package : github.com/PuerkitoBio/goquery
4
4
- package : github.com/dgrijalva/jwt-go
Original file line number Diff line number Diff line change 5
5
6
6
gomail "gopkg.in/gomail.v2"
7
7
8
- "github.com/netlify/commerce/conf"
9
- "github.com/netlify/commerce/models"
8
+ "github.com/netlify/netlify- commerce/conf"
9
+ "github.com/netlify/netlify- commerce/models"
10
10
)
11
11
12
12
// Mailer will send mail and use templates from the site for easy mail styling
Original file line number Diff line number Diff line change 4
4
"fmt"
5
5
"os"
6
6
7
- "github.com/netlify/commerce/cmd"
7
+ "github.com/netlify/netlify- commerce/cmd"
8
8
)
9
9
10
10
func main () {
Original file line number Diff line number Diff line change 5
5
_ "github.com/go-sql-driver/mysql"
6
6
_ "github.com/lib/pq"
7
7
_ "github.com/mattn/go-sqlite3"
8
- "github.com/netlify/commerce/conf"
8
+ "github.com/netlify/netlify- commerce/conf"
9
9
10
10
"github.com/jinzhu/gorm"
11
11
)
You can’t perform that action at this time.
0 commit comments