AureMind is an AI-assisted Personal Manager web app built as a college software engineering project. It combines note taking, task tracking, and productivity tools into a simple and intuitive interface to help users organize their daily activities and ideas.
AureMind was developed by Group 10 of the Software Engineering class at Delhi University:
- Dhruv Kashyap
- Prashant Nath
- Demas Fadel Anggara
- Anuj Rajput
This project draws inspiration from tools like Notion, Obsidian, and other productivity applications. It was created to fulfill academic requirements and demonstrate full-stack development skills.
- User authentication and profile management
- Create, edit, and delete notes
- Organize tasks and personal schedules
- Simple and responsive UI
- Django-powered backend
| Layer | Technology |
|---|---|
| Backend | Python, Django |
| Frontend | HTML, CSS |
| Database | SQLite |
| Tools | Git, GitHub |
AureMind/
├── college_project/
├── Django/
├── db.sqlite3
├── manage.py
├── requirements.txt
├── README.md
└── .gitignore
git clone https://github.com/AureMindOrg/AureMind.git
cd AureMind
python -m venv venv
source venv/bin/activate
# On Windows: venv\Scripts\activate
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver
Open your browser and visit:
http://127.0.0.1:8000/
- Register or log in as a user
- Create and manage notes
- Track tasks and organize daily activities
This project was created primarily for academic purposes, but contributions are welcome.
- Fork the repository
- Create a new branch
- Commit your changes
- Open a pull request
Made with ❤️ as a Software Engineering college project.