Skip to content

Commit

Permalink
Merge pull request #20 from dreammis/gt7-e3c0804b-f3b6-4c41-b48b-a030…
Browse files Browse the repository at this point in the history
…a2c44f26

🌐 Add LLM Translations
  • Loading branch information
dreammis authored Nov 27, 2023
2 parents d5e59da + ba9212a commit 3956cb0
Showing 1 changed file with 176 additions and 0 deletions.
176 changes: 176 additions & 0 deletions content/posts/how-to/how-to-install-wallos-on-your-nas/index.en.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,176 @@
---
title: "Lazy Financial Management Tool for Nas Enthusiasts: How to Set Up Wallos to Manage Personal Finances"
date: 2023-11-27T18:28:14+08:00
categories:
- Nas Tutorials
draft: false
toc: true
description: [Explore Wallos and bring financial innovation to middle-aged men's families.]
---

# Lazy Financial Management Tool for Nas Enthusiasts: How to Set Up Wallos to Manage Personal Finances

## 1. Introduction

In this era filled with various subscriptions and membership services, have you ever been confused by the following:

- How much of your monthly expenses are hidden subscription and membership fees that you almost forget?

- Have you ever encountered memberships that you have forgotten but are silently deducted?

- Do you have overseas payment memberships/subscriptions that give you a headache due to currency conversion?

- Are you, like me, not a meticulous accounting enthusiast?

As a VIP super member of multiple platforms and an annual subscriber (a leek), I am also a fanatic of data privatization and Nas solutions.

Today, I will bring you a little toy to help you solve this problem: `Wallos`.

Unlike traditional accounting software that focuses on every detail, Wallos is more about helping you understand and manage those silently deducted membership and subscription fees that we often overlook.

![image-20231127173834973](image-20231127173834973.png)

---

## Introducing Wallos

Wallos is not just a financial management tool; it is a new way of management that can help you easily track expenses and better control your financial life. Let's take a closer look at the features and functions of Wallos:

- **Subscription Management**: Track your recurring subscriptions and payments to ensure you don't miss any due dates.

![image-20231127173928836](image-20231127173928836.png)

- **Category Management**: Support custom expense categories to give you deeper insights into your spending habits.

![image-20231127174044325](image-20231127174044325.png)

- **Multi-Currency Support**: Support multiple currencies, allowing you to manage finances in your chosen currency.

- **Currency Conversion**: Integrated with Fixer API to provide exchange rate conversion and view all subscriptions in major currencies.

- **Statistics**: Provide another perspective to view your expenses.

![image-20231127174142438](image-20231127174142438.png)

- **Data Privacy**: As a self-hosted application, Wallos ensures that your financial data remains private and secure on your own server.

- **Logo Search**: If you haven't uploaded it, Wallos can search for subscription logos on the web.

![image-20231127174245836](image-20231127174245836.png)

- **Mobile View**: Use Wallos anytime, anywhere.

- **Notifications**: Receive upcoming payment notifications via email.

---

Setup Steps:

## 1. Key Point

`Follow for free` to avoid getting lost.

## 2. Docker Management GUI Tool

#### Synology DSM 7.2 or above can directly use *Container Manager*

![container-manager-1](images\container-manager-1.png)

#### QNAP ContainerStation

![container-station-1](images\container-station-1.png)

![container-station-2](images\container-station-2.png)

#### Install Portainer on your own

Tutorial reference:
[30-Second Installation of Portainer, a Must-Have Tool for Nas](/how-to-install-portainer-in-nas/)

Next, we will use Portainer as an example.

## 3. File Station

# File Station Open Docker Folder and Create `Wallos` Folder

![image-20231127174441484](image-20231127174441484.png)

## 4. Create Stack

![portainer-slack-add](images/portainer-slack-add.png)

## 5. Deploy Code

```yaml
version: '3.0'

services:
wallos:
container_name: wallos
image: bellamy/wallos:latest
ports:
- "8282:80/tcp"
environment:
TZ: 'Asia/Shanghai'
volumes:
- '/volume1/docker/wallos/db:/var/www/html/db'
- '/volume1/docker/wallos/logos:/var/www/html/images/uploads/logos'
restart: unless-stopped
```
1. Select stack
2. Enter "Wallos" in the name field
3. Enter the above code in the editor
4. Click deploy
## 6. Success
![portainer-slack-add-success](images/portainer-slack-add-success.png)
## 7. Usage
Access the program in your browser: [ip]:[port]
> Replace "ip" with the IP address of your NAS (mine is 172.16.23.106), and replace "port" with the port defined in the configuration file (if you followed my tutorial, it would be 8282).
First-time login and registration:
![image-20231127174841539](image-20231127174841539.png)
## 8. Special Features Showcase
### Add Member/Subscription
![image-20231127174937951](image-20231127174937951.png)
### Automatically Search Images Based on Subscription/Member Name (You Can Upload Your Own)
![image-20231127175133190](image-20231127175133190.png)
![image-20231127175200317](image-20231127175200317.png)
### Multiple User Tags
![image-20231127175324978](image-20231127175324978.png)
### Subscription Category Management
![image-20231127175445574](image-20231127175445574.png)
### Category Statistics
![image-20231127175620575](image-20231127175620575.png)
### Currency Conversion
If you, like me, have some memberships for foreign services that require currency conversion, you need to apply for an account with [Fixer](https://fixer.io/#pricing_plan). They offer 1000 free calls per month.
![image-20231127175753080](image-20231127175753080.png)
## Finally
I hope this little tool can help you better manage your subscriptions and memberships~
If you like this article, please remember to like, bookmark, and follow [Nasdaddy's Digital Garden](https://www.nasdaddy.com/). We will continue to bring you more practical self-hosted application guides. Let's take control of our own data and create our own digital world!
If you encounter any problems or have any suggestions during the setup process, feel free to leave a comment below. Let's explore and learn together.

0 comments on commit 3956cb0

Please sign in to comment.