Skip to content

snaksa/expense-tracker-backend

Repository files navigation

Expenses Tracker

Manage your finances and stop wondering where you spent your money.

Prerequisites

Run

  • Clone the project

    git clone git@github.com:snaksa/expense-tracker-backend.git
    cd expense-tracker-backend
    
  • Build the containers

    make build
    make up
    
  • Install dependencies

    make dependencies
    
  • Run migrations and fixtures

    make migrate
    make fixtures
    
  • Go to http://localhost:8080/graphiql

  • Run the following login mutation

    mutation login {
      loginUser(input: {email: "demo@gmail.com", password: "123456"})
    }
    
  • You should get the following response

    {
      "data": {
        "loginUser": "<yourApiToken>"
      }
    }
    

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages