/InoTool

Symfony 6 application for managing freelancer tasks, with basic bank account management

Primary LanguagePHPMIT LicenseMIT

InoTool - Toolkit of private tools for freelancer management and managing private bank accounts

What is this?

If you are working as freelancer you have to manage your customer, invoices and other stuff. Of course there are plenty of tools out there to help you managing your daily business, however I always prefer to have my own software in place, so here it is: InoTool

Features

Freelancer Manager

  • Manage your customer
  • Manage your projects
  • Manage your time sheets
  • Extensive reporting
  • Supports service contracts
  • PDF reporting

Bank Accounting Manager

  • Supports multiple banking accounts
  • Imports Deutsche Bank and Targobank CSV files
  • Auto-assignment of repetive accounting data
  • Extensive reporting

Installation

Make sure to meet the requirements:

If you have already the symfony binary on your system, check your system with:

symfony check:requirements

install copy from gitHub to your work space:

  1. git clone https://github.com/SieGeL2k16/InoTool.git

  2. Install composer packages: composer install

Setup Database

Create a new database user and database for InoTool, i.e.:

  1. su - postgres
  2. psql
  3. postgres=# CREATE ROLE inotool LOGIN CREATEDB PASSWORD 'inotool2k21';
  4. postgres=# CREATE DATABASE inotool OWNER inotool;

Configure Symfony / InoTool

Create .env.local file in Symfony root directory and takeover the following variables:

APP_ENV=prod
DATABASE_URL=postgresql://inotool:inotool2k21@127.0.0.1:5432/inotool?serverVersion=14&charset=utf8

Please refer to the supplied .env file for a description of these variables.

Create database structure from Symfony:

bin/console doctrine:migrations:migrate

Add a user to work with the application:

bin/console app:user

Use your webbrowser to call the application (public is webdirectory!)

Frameworks and third-party libraries used