Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fachryansyah/test-golang
Repository isi jawaban untuk test golang
https://github.com/fachryansyah/test-golang
Last synced: about 1 month ago
JSON representation
Repository isi jawaban untuk test golang
- Host: GitHub
- URL: https://github.com/fachryansyah/test-golang
- Owner: fachryansyah
- Created: 2019-11-08T14:09:02.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-10T14:30:47.000Z (about 5 years ago)
- Last Synced: 2023-03-03T00:06:53.503Z (almost 2 years ago)
- Language: Go
- Size: 14.6 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Test Golang
Ini adalah repository untuk menjawab beberapa soal test golang.
[Dokumentasi API ](https://documenter.getpostman.com/view/1720373/SW18wurk?version=latest)
## Instalasi
#### Clone project
```sh
$ git clone https://github.com/fachryansyah/test-golang
```
#### Memasang Module
```sh
$ go get github.com/fachryansyah/test-golang-solusi-menghitung-huruf
```
#### Menjalankan Webservice
```sh
$ go run server.go
```## Menjalankan Service Docker
#### Membuat Image
Membuat image dari Dockerfile yang sudah di konfigurasi.
```sh
$ docker build --tag app-test-golang-fahri:1.0 .
```
#### Membuat Container
```sh
docker container create --name app-test-golang-fahri -p 1337:1337 app-test-golang-fahri:1.0
```
#### Menjalankan Container
```sh
docker container start app-test-golang-fahri
```