Python-flask based web application to manage "Paying Guest" accomodation business. It features options like displaying rental plans, managing rents, accounting expenses etc.
It a hosted webapp that can be accessed from any latest web browers.
Its a public code and everyone is welcome to contribute to it. Once you are developing changes for the repo, you need to follow instruction in this section very carefully. Once you have completed changes, try running local CI checks to avoid failures on repository CI actions.
You need to install pipenv package on system which is used for development. Once pipenv is install you need to create virtual environment with below commands.
# Install virtual environment with all development package dependencies.
pipenv install --devTo run code on production without devlopment packages.
# Install virtual environment without development package, it can only be used only for running production code but not performing any development checks.
pipenv installRun the below command to perform code style check.
pipenv run pycodestyle src/Run the below command to perform document style check.
pipenv run pydocstyle src/Run the below command to perform linter check.
pipenv run pylint src/Run the below command to run flask service locally on http://127.0.0.1:5000
pipenv run python -m src.server