https://github.com/sillyhatxu/table-backend
https://github.com/sillyhatxu/table-backend
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sillyhatxu/table-backend
- Owner: sillyhatxu
- Created: 2019-07-21T05:33:04.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-06T08:30:43.000Z (almost 6 years ago)
- Last Synced: 2023-03-07T10:26:49.825Z (about 2 years ago)
- Language: HTML
- Size: 51.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# aftersales-backend
## Initialize your project
```
dep init
```## Adding a dependency
```
dep ensure -add github.com/foo/bar github.com/foo/baz...dep ensure -add github.com/foo/[email protected] github.com/foo/baz@master
```## Updating dependencies
```
dep ensure -update github.com/sillyhatxu/convenient-utilsdep ensure -update
```## build
```
docker build -f application-api/Dockerfile .
```## alpine-build Dockerfile
```
FROM alpineRUN apk add --no-cache tzdata
RUN apk --update --no-cache add curl
RUN apk add --no-cache ca-certificates
```## alpine-build build
```
docker build -t xushikuan/temp-backend .
docker tag xushikuan/temp-backend:latest xushikuan/temp-backend:1.0
docker push xushikuan/temp-backend:1.0
```# Release Template
### Feature
* [NEW] Support for Go Modules [#17](https://github.com/sillyhatxu/convenient-utils/issues/17)
---
### Bug fix
* [FIX] Truncate Latency precision in long running request [#17](https://github.com/sillyhatxu/convenient-utils/issues/17)
###
```
git tag v1.0.2
git push origin v1.0.2
```