Demo
User Name: demo
Password: pfms@demo1
Just a heads up this repository is going to contain lots & lots of mistakes, ugly code & some bullshit logics.
I am trying to learn as I build the project.
Please let me know if you have any suggestions or if you find any Security Issue.
Thank You.
1. Multiple Bank, Mobile finance & Cash in hand account.
2. Inter Account Transaction System.
3. Income Record.
4. Expanse Record.
5. Dashboard with Income & Expense Summary (Charts).
6. Investment Record & Tracking (Stock, Crypto) - Not in Real Time.
1. Bank statement analysis.
2. Family / Joint account system.
3. Personal Balance sheet.
* Front End: Html, Css, Js, Bootstrap
* Back End: Python - Framework ( Django)
* Charts : Haven't decide yet
* Database : sqlite3 (Development)
git clone https://github.com/Shahriar-Hossain-IT/PFMS.git
cd PFMS
python3 -m venv venv
or
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
cd PFMS
-
SECRET_KEY = "Enter your SECRET_KEY" # Create One #
ALLOWED_HOSTS = ['127.0.0.1'] # Add your host #
DEBUG = True # (Set to False in Production) #
INTERNAL_IPS= ["127.0.0.1"] # For Django Debug Toolbar - Documentation #
TIME_ZONE = 'Enter Your Time Zone' # Find Your Timezone (use the TZ databse name) #
python3 manage.py makemigrations
or
python manage.py makemigrations
python3 manage.py migrate
or
python manage.py migrate
python3 manage.py createsuperuser
or
python manage.py createsuperuser
Enter Username , Email, & Password
Remember this username & password you will need it to login.
python3 manage.py runserver
or
python manage.py runserver