A comprehensive web application designed for data analytics and visualization using Django.
- Data Visualization: Interactive charts and graphs to visualize data.
- User Authentication: Secure login and registration system.
- Responsive Design: Compatible with all devices.
- Real-time Updates: Live data updates for dashboards.
To install and run this project locally, follow these steps:
- Clone the repository
git clone https://github.com/Sparsh57/Analytic_Website.git
- Navigate to the project directory
cd Analytic_Website
- Create a virtual environment and activate it
python -m venv venv source venv/bin/activate # On Windows, use `venv\Scripts\activate`
- Install dependencies
pip install -r requirements.txt
- Configure the database: Open
settings.py
and update theDATABASES
configuration with your database details.DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql', # or 'mysql', 'sqlite3', 'oracle' 'NAME': 'your_database_name', 'USER': 'your_database_user', 'PASSWORD': 'your_database_password', 'HOST': 'your_database_host', 'PORT': 'your_database_port', } }
- Apply database migrations
python manage.py migrate
- Create a superuser to access the Django admin panel
python manage.py createsuperuser
- Run the development server
python manage.py runserver
- Access the website: Open your web browser and navigate to
http://localhost:8000
. - Register/Login: Create a new account or log in with your credentials.
- Explore Features: Use the dashboard to upload data and create visualizations.
Contributions are welcome! Follow these steps to contribute:
- Fork the repository.
- Create a new branch (
git checkout -b feature-branch
). - Make your changes.
- Commit your changes (
git commit -m 'Add some feature'
). - Push to the branch (
git push origin feature-branch
). - Open a pull request.
This project is licensed under the MIT License. See the LICENSE file for details.