Welcome to the inspirAItion project! This project is designed for the 6th team of the 3rd team project of MS AI School 5th.
These instructions will help you get a copy of the project up and running on your local machine for development and testing purposes.
To run Django locally, you'll need the following:
- Python (version 3.8 or higher) installed on your machine.
- PostgreSQL installed and configured on your local environment.
- Install dependencies via
pipusing therequirements.txtfile.- Example:
pip install -r requirements.txt
- Example:
- You may have Node.js and npm installed to handle front-end dependencies if needed.
- You may also need to have Virtualenv installed to manage the virtual environment for the project.
Step-by-step instructions to get the development environment up and running:
- Clone this repository:
git clone https://github.com/yourusername/yourrepository.git
- Navigate into the project directory:
cd yourrepository - Create and activate a virtual environment:
python -m venv venv source venv/bin/activate # For Mac/Linux .\venv\Scripts\activate # For Windows
- Install the required Python dependencies:
pip install -r requirements.txt
- Set up your PostgreSQL database and configure it in your Django settings.
- Run Django migrations:
python manage.py makemigrations
- Run the migrations to set up your database:
python manage.py migrate
- Run the Django server:
python manage.py runserver
Explain how to run the automated tests for this system. You can use Django’s test framework by running:
python manage.py testFor deploying this project on a live system, you can follow the steps based on the platform you're using, such as Heroku, AWS, or any other cloud service. Ensure to configure the database and environment variables properly.
- Django - Web framework used
- PostgreSQL - Database used
- Bootstrap 5 - Front-end framework used
- HTML, CSS, JavaScript - Front-end technologies
- Python - Programming language
Please read cooldevsmart's readme.md for details on our code of conduct, and the process for submitting pull requests.
- cooldevsmart - Initial work
- FaithCoderLab - Back-End, Database
- jjaayy2222 - Front-End
This project is licensed under the MIT License - see the LICENSE.md file for details.
- Special thanks to our team members for all the help and inspiration.
- Thanks to everyone whose code was used.