This is a Django project using templates and SQLite as the database.
Before you begin, ensure you have met the following requirements:
- Python 3.x installed on your machine. You can download it from python.org.
- Pip, the Python package installer.
- Virtualenv, to create isolated Python environments (optional but recommended).
-
Clone the repository:
git clone https://github.com/deelaurence/tasky.git cd tasky -
Create and activate a virtual environment:
python -m venv venv source venv/bin/activate # On Windows, use `venv\Scripts\activate` OR `python -m venv venv`
-
Install the required dependencies:
pip install -r requirements.txt
-
Apply the migrations:
python manage.py migrate
This will set up your SQLite database (by default,
db.sqlite3).
-
Start the server:
python manage.py runserver
-
Access the project in your web browser:
Open your browser and go to
http://127.0.0.1:8000/.if everything works well you should be redirected to the signup page