Trakli is a personal income tracking application built using Laravel. The application allows users to manage and categorize their income and expenses under various groups and categories.
- Transactions: Income and expenses across multiple wallets, with attachments and recurring rules.
- Transfers: Move money between wallets, including cross-currency at user-set rates.
- Budgets: Scoped to categories, groups, or wallets; weekly / monthly / yearly / custom range; optional rollover; threshold and forecast alerts.
- Refunds: Mark an income as refunding an earlier expense; matching budgets adjust automatically.
- Reminders: Bills, budget alerts, and custom events with pause, resume, and snooze.
- Imports: Pull transactions from CSVs, PDFs, and photos of receipts.
- Insights & AI: Dashboard stats, digest emails, and a chat assistant for your finances.
- Offline-first: Changes made on mobile sync cleanly when the device reconnects.
- Docker
- Docker Compose
- Make
git clone git@github.com:whilesmart/trakli-webservice.gitcd trakli-webservicecp .env.example .envmake setup
make up- Start containersmake down- Stop containersmake restart- Restart containersmake test- Run testsmake lint- Check code stylemake lint-fix- Fix code style issuesmake phpmd- Runs PHP Mess Detectormake phpstan- Runs PHP Static Analyzermake format- Additional code style checksmake format-fix- Fix additional code style issuesmake migrate- Run database migrationsmake migrate-fresh- Fresh migrations (drops all tables)make seed- Run database seedersmake migrate-fresh-seed- Fresh migrations + seedersmake optimize- Optimize Laravel application (cache config, routes, views)make tinker- Open Laravel Tinker REPLmake bash- Access container bash shellmake logs- View application logsmake fix-permissions- Fix file permission issues
For detailed and explained installation steps see : INSTALLATION.md
- The application will be available at
http://localhost:8000. - API documentation will be accessible at
http://localhost:8000/docs/swagger.
To stop the Docker containers, run:
make downMIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
