Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 494 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 494 Bytes

test-app

This repository contains a multi-tier web application, created for AWS training.

Overview

The application contains the following layers

  • /web - a nextjs/react application
  • /api - a flask application
  • /worker - another flask application (for now)
  • postgres is also deployed in the docker compose network

Requires

  • Docker
  • Nodejs/npm

Run

cd test-app
docker compose up --build

In another terminal:

cd test-app/web
npm i
npm run dev