sipf / zipcode-ws

API for PF zip codes (code postaux). The docker hub link : https://hub.docker.com/r/sipf/zipcode-ws

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Zipcode-ws

This project is used for proof of concept only. Of course, you can contribute, you just need to fork and PR your feature.

You can access the data in this repository :

Usage

Start the container :

docker run -p 8080:8080 sipf/zipcode-ws

You can then log to http://127.0.0.1:8080 to use the service or you can simply use this link : https://zipcode-ws.herokuapp.com.

Default Configuration

spring:
  profiles:
    active: development

---
spring:
  profiles: production

---
spring:
  profiles: test
  jpa:
    hibernate:
      ddl-auto: create-drop
    show-sql: true
  datasource:
    platform: h2

---
spring:
  profiles: development
  h2:
    console:
      enabled: true
      path: /h2-console
  jpa:
    hibernate:
      ddl-auto: create-drop
    show-sql: true
  datasource:
    platform: h2

Building the container

docker build -t sipf/zipcode-ws .

License & Authors

About

API for PF zip codes (code postaux). The docker hub link : https://hub.docker.com/r/sipf/zipcode-ws

License:MIT License


Languages

Language:Shell 47.7%Language:Batchfile 36.9%Language:Java 15.4%