/release_notes

Sample full stack application with backend and frontend parts wrapped in docker

Primary LanguageJavaScript

Example Application with Backend and Frontend parts

ScreenShot

Technology stack:

Running

  1. Clone repo.

Production:

docker-compose up
# web server will be available at URL `http://0.0.0.0:3000`

Development:

For a start in docker-compose.yml comment out the code for services api and web and start postgres service for DB instance.

# API
# install packages
cd api
npm i
# run local server
node src/index.js
# the server will be available by default at URL `http://0.0.0.0:3010`

# WEB
# install packages
cd web
npm i
# run local server
npm run dev
# the server will be available by default at URL `http://0.0.0.0:3000`