This is the base repository, to clone and start it using docker.
Currently this application supports the following bank file formats:
- Caixa Enginyers Account and Credit Card
- Commerce bank
- N26 CSV file
- MultiBank QIF File (TBD)
- You can run it via docker image
- Or have it run in cloning the code and building it, see How to contribute
No matter which environment you use, the server accepts the following environment vars
Variable | Description | Default |
---|---|---|
DB_URL |
Connection string for the database | sqlite://db.sqlite3 |
SQL_LOG_LEVEL |
Log level for SQL queries, one of: [trace, debug, info, notice, warning, error, critical] | debug (or info if debug mode) |
STATIC_PATH |
Path prefix for static asset downloads in frontend | / |
DECIMAL_COUNT |
Number of decimal places to show in frontend | 2 |
APP_DEBUG |
Enable debug mode features in the frontend | false (production), true (debug build) |
ENVIRONMENT |
Environment name shown in frontend footer | development |
LATENCY_ON_INVALID_PASSWORD |
Time in seconds to wait before responding to invalid login attempts | 2 |
MAX_LOGIN_ATTEMPTS |
Maximum number of failed login attempts before locking the user | 5 |
MAX_LOGIN_ATTEMPTS_PERIOD |
Time period in minutes during which failed login attempts are counted | 60 |
Environment vars available in the docker
Variable | Description | Default |
---|---|---|
DEMO |
Enable demo mode and user setup | false |
DEMO_USER |
Override the default username for the create user command | - |
DEMO_PWD |
Override the default password for the create user command | - |
DEMO_EMAIL |
Override the default email the create user command | - |
DEMO_DATA |
Generate sample data for demo user | false |
The server application has multiple commands to make the initial creation easy, and also maintainance
-
create_user
: it will create a user in the database-u
,--username
: define a username-p
,--password
: define the password-e
,--email
: define the e-mail--admin
: sets the user as admin-g
,--groupname
: defines the group name
-
demo_data
: generate basic graphs, labels and random movements-g
,--group-owner-id
: defines the group owner id of the generated data
-
change_password
: Change the password of a userusername
: the username of the user to change the password
The migration from Django to Vapor brought significant database improvements, including group data ownership capabilities that enable multiple users to operate on a single instance. This upgrade requires a complete data migration from the previous database version.
- Set up a new database for the upgraded version
- Update your environment or .env file with the new database connection details
- Generate a new user via the "demo_user" command
- Execute the data migration using v2_migrate along with the group ID for the user you wish, the command demo_user automatically provides you a group Id:
./server v2_migrate sqlite://db.sqlite 1234-1234-1234-1234
** IMPORTANT **: The web-client must have been launched and logged into at least once in V2 before graphs can be imported
Report in mobile
Data in mobile
- Fork the branch develop of the part you wish to contribute (mrscrooge-server or mrscrooge-view).
- Clone the server and the view repositories
- Run it
- Run the server, with swift:
swift run
- Migrate the data:
# ServerDebug is a softlink, to reuse the build from the swift run
./serverDebug migrate
- Create an admin user (by default will be demo:demo):
./serverDebug create_user --admin
Simply run the tests using swift:
swift test
- Install dependencies
pnpm install
- Build in watch mode
pnpm run start:dev
The current application icon is from VisualPharm