https://github.com/peguimasid/expencfy
💸 A simple expense tracker app built with Elixir, Phoenix LiveView. Track categories, budgets, and expenses with real-time updates.
https://github.com/peguimasid/expencfy
ecto elixir liveview phoenix-framework
Last synced: 9 months ago
JSON representation
💸 A simple expense tracker app built with Elixir, Phoenix LiveView. Track categories, budgets, and expenses with real-time updates.
- Host: GitHub
- URL: https://github.com/peguimasid/expencfy
- Owner: peguimasid
- Created: 2025-09-07T12:12:23.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-09-15T00:11:24.000Z (9 months ago)
- Last Synced: 2025-09-24T10:48:40.755Z (9 months ago)
- Topics: ecto, elixir, liveview, phoenix-framework
- Language: Elixir
- Homepage: https://expencfy.masid.dev
- Size: 153 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# Expencfy
Expencfy is a Phoenix-based application to manage your expenses and budgets efficiently.
## Getting Started
### Prerequisites
- Have [Docker](https://www.docker.com/) installed on your system.
### Setup Instructions
1. Clone the repository:
```bash
git clone https://github.com/peguimasid/expencfy.git
cd expencfy
```
2. Start the database using Docker:
```bash
docker compose up -d
```
3. Install dependencies, set up the database, and seed initial data:
```bash
mix setup
```
4. Start the Phoenix server:
```bash
iex -S mix phx.server
```
5. Visit the application in your browser at [http://localhost:4000](http://localhost:4000).
### Running Tests
- Run all tests:
```bash
mix test
```
- Run tests in watch mode:
```bash
mix test.watch
```
## Deployment
For production deployment guidelines, visit the [Phoenix deployment documentation](https://hexdocs.pm/phoenix/deployment.html).
## Learn More
- [Phoenix Framework Official Website](https://www.phoenixframework.org/)
- [Guides](https://hexdocs.pm/phoenix/overview.html)
- [Documentation](https://hexdocs.pm/phoenix)
- [Forum](https://elixirforum.com/c/phoenix-forum)
- [Source Code](https://github.com/phoenixframework/phoenix)