The Mia! Accounting Django Project https://accounting-django.imacat.idv.tw
Go to file
2020-09-07 00:22:51 +08:00
accounting Removed an unused import from the accounting_accounts management command in the accounting application. 2020-09-06 21:58:25 +08:00
mia_core Removed an unused import from the accounting_accounts management command in the Mia core application. 2020-09-06 22:08:33 +08:00
.gitignore Cleaned-up the .gitignore content. 2020-09-06 22:56:48 +08:00
LICENSE Added the README and LICENSE files. 2020-09-07 00:22:51 +08:00
README.md Added the README and LICENSE files. 2020-09-07 00:22:51 +08:00

mia-accounting

The Mia! Accounting Application Built on Python Django

 Copyright (c) 2020 imacat.

 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.

Installation

Requirements

Installs the following requirements with pip:

  • Python 3.6 or above
  • Django 3.0 or above
  • django-dirtyfields
  • django-decorator-include
  • titlecase

Download

Clones the project from GitHub

git clone git@github.com:imacat/mia-accounting.git

Moves the accounting and mia_core directories into your Django project root directory.

Configure Your settings.py

Adds these two applications into your INSTALL_APPS.

'mia_core.apps.MiaCoreConfig'
'accounting.apps.AccountingConfig'

Adds the locale middleware if it is not added yet.

'django.middleware.locale.LocaleMiddleware'

Configure Your urls.py:

Adds this line into your urls.py:

path('accounting/', decorator_include(login_required, 'accounting.urls')),

Ensures these two lines are also in your urls.py, if they are not yet:

path('i18n/', include("django.conf.urls.i18n")),
path('jsi18n/', JavaScriptCatalog.as_view(), name='javascript-catalog'),

Restarts Your Web Project

Bugs and Supports

Address all bugs and support requests to imacat@mail.imacat.idv.tw.