Skip to content

Minha implementação do desafio Full Stack da Bankme

Notifications You must be signed in to change notification settings

dantas15/bankme-challenge

 
 

Repository files navigation

Logo Bankme

Bankme Challenge

Built With

pnpm Next React Node Nest Docker

Getting started

Make sure you got the prerequisites and follow the steps below to have a local copy of this project up and running.

  • You can see the notes I had during development here
  • You can see the challenge instructions here, or you can see the original github repo of the challenge here

Prerequisites

You can use only Docker if you'd like, but node and pnpm are recommended for development

  • Node.js

    https://nodejs.org/en/download/
  • PNPM

    npm install pnpm -g
  • Docker

    https://www.docker.com/get-started/

Installation

Clone the repo

git clone https://github.com/dantas15/bankme-challenge.git

Setup configuration

pnpm config:local

Run the whole project

pnpm start:dev

Run with Docker

Build the images

docker build . --target server --tag bankme-server:latest 

Run the containers

docker run -d --name server -p 8080:8080 -e DATABASE_URL="file:./dev.db" -e JWT_SECRET="super_jwt_secret" bankme-server:latest

Postman

You can test the API requests using Postman:

Run In Postman

About

Minha implementação do desafio Full Stack da Bankme

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 96.5%
  • CSS 1.7%
  • Other 1.8%