Skip to content

Latest commit

 

History

History
50 lines (39 loc) · 1.23 KB

README.md

File metadata and controls

50 lines (39 loc) · 1.23 KB

Timestamp Converter

About this repo

Repo with an API for converting UNIX timestamps to date and time, and vice versa.

The aim of this repo is to practice the networking between containers.

root
 |__ images                 # containers images
 |    |__ base              # base image for back and front
 |    |    |__ Dockerfile
 |    |
 |    |__ app               # backend container  
 |    |    |__ Dockerfile
 |    |
 |    |__ web               # frontend container
 |         |__ Dockerfile
 |
 |__ src                    # source code
      |__ app               # backend
      |    |__ app
      |    |__ setup.py
      |
      |__ web               # frontend
           |__ web
           |__ setup.py

Run

For building the containers:

make build-web

For running:

make run-api

Useful links