LauraBeatris / gofinances-api

Rest API to manage financial transactions - Built with Express, TypeORM and Postgres

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Go Finances

Store transactions and keep up to date with your balance

Click here to see the database model

Run in Insomnia}

Author Languages Stars Forks Contributors

๐Ÿ“Œ Table of Contents

๐Ÿš€ Features

  • ๐ŸŒด Transactions CRUD
  • ๐Ÿ“‚ Import transactions from CSV files

๐Ÿ‘ท Installation

You need to install Node.js and Yarn first, then in order to clone the project via HTTPS, run this command:

git clone https://github.com/LauraBeatris/gofinances-api.git

SSH URLs provide access to a Git repository via SSH, a secure protocol. If you use a SSH key registered in your Github account, clone the project using this command:

git clone git@github.com:LauraBeatris/gofinances-api.git

Install dependencies

yarn install

Create your enviroment variables based on the examples of .env.example

cp .env.example .env

After copying the examples, make sure to fill the variables with new values.

Setup a database

Install Postgres to create a database or if you have Docker in your machine, fill the environment values related to database configurations and then run the following commands in order to create a postgres container.

docker-compose up

๐Ÿƒ Getting Started

Run the transactions in order to configure the database schema

yarn typeorm migration:run

Run the following command in order to start the application in a development environment:

yarn dev:server

๐Ÿ“ฎ Faq

Question: What are the tecnologies used in this project?

Answer: The tecnologies used in this project are NodeJS + Express Framework to handle the server and TypeORM

๐Ÿ› Issues

Feel free to file a new issue with a respective title and description on the the GoFinances API repository. If you already found a solution to your problem, i would love to review your pull request! Have a look at our contribution guidelines to find out about the coding standards.

๐ŸŽ‰ Contributing

Check out the contributing page to see the best places to file issues, start discussions and begin contributing.

๐Ÿ“• License

Released in 2020. This project is under the MIT license.

Made with love by Laura Beatris ๐Ÿ’œ๐Ÿš€

About

Rest API to manage financial transactions - Built with Express, TypeORM and Postgres


Languages

Language:TypeScript 81.2%Language:JavaScript 18.8%