Welcome to our RBIdatabase project! In this guide, we'll walk you through the steps to install and run our project from GitHub. Let's get started!
Before you begin, ensure you have the following installed on your system:
- Python (version 3.6 or later)
- pip (Python package installer)
- Git
-
Clone the repository to your local machine:
git clone https://github.com/Ramachandra-2k96/RBIDatabase
-
Navigate to the project directory:
cd RBIDatabase -
Create a virtual environment to isolate project dependencies:
python -m venv env
-
Activate the virtual environment:
-
Windows:
.\env\Scripts\activate
-
Linux/macOS:
source env/bin/activate
-
-
Install project dependencies:
pip install -r requirements.txt
-
Perform migrations:
python manage.py migrate
Now that you have installed the project and set up dependencies, you can run the development server:
python manage.py runserverYou should see output indicating that the server is running. Open your web browser and navigate to http://localhost:8000 to view the project(user) .
http://localhost:8000/admin/login for main admin
http://localhost:8000/bank_login/ for bank admin
If you would like to contribute to this project, please follow these steps:
- Fork the repository.
- Create a new branch (
git checkout -b feature/yourfeature). - Make your changes.
- Commit your changes (
git commit -am 'Add some feature'). - Push to the branch (
git push origin feature/yourfeature). - Create a new Pull Request.
If you encounter any issues or have questions, feel free to create an issue on GitHub.
Happy coding! 🚀