Removal of a committer
[ric-plt/ricdms.git] / Makefile
1 #   Copyright (c) 2022 Samsung
2 #
3 #   Licensed under the Apache License, Version 2.0 (the "License");
4 #   you may not use this file except in compliance with the License.
5 #   You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #   Unless required by applicable law or agreed to in writing, software
10 #   distributed under the License is distributed on an "AS IS" BASIS,
11 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 #   See the License for the specific language governing permissions and
13 #   limitations under the License.
14 #
15
16 build: generate
17         go build -o ricdms cmd/ric-dms.go
18
19 generate:
20         swagger generate server -f api/ric-dms-api-2.0.yaml -t pkg/ --exclude-main
21
22 run:
23         go run cmd/ric-dms.go
24
25 test:
26         go clean -testcache
27         go test -timeout 30s -run ^Test gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/resthooks -v 
28
29 image:
30         docker build -t  ric-dms:v1.0 .
31
32 docker-run:
33         docker run -it --rm -d -p 8000:8000 ric-dms:v1.0
34
35 all: generate build test image