this is a project for control of accounts in small business (Ex.: bakery, grocery store, pastry shop).
The ACCOUNT-MANAGER tool is a project designed for the internal management of micro-businesses. It utilizes the Django admin site as a base for its functionalities. It is important to note that this tool is not recommended for managing large or large-scale businesses.
git clone <repository_url>
If you want to run the tool locally, follow these steps:
python -m venv <env_name>
python3 -m venv <env_name>
<env_name>\Scripts\activate
source <env_name>/bin/activate
pip install -r requirements.txt
.env file according to the provided .env.example file
python manage.py migrate
localhost:8000 in your browser to use it.If you want to run the tool in a Docker container, follow these steps:
docker-compose up -d --build
docker exec -it <container_id> bash
After the installation, you can perform the following steps:
python manage.py createsuperuser
The ACCOUNT-MANAGER tool is a project developed for the internal management of micro businesses. It offers features such as utilizing the Django admin site and is recommended for small-scale businesses. The installation process includes setting up the tool locally or in a Docker container, performing migrations, and creating a superuser for system access.