This project is a simple To Do application which will take the tasks and save them into our server database.
In this project we used Kotlin language for developing the android application and Django Rest framework to develope the back-end Api.
You will need to :
download android studio and sync the dependencys in gradle.build file.
download Python and add it to your Path in your environment variables.
download Django framework: you can use the command
pip install django
pip install djangorestframework
To clone this project you will need to add Secret key and Database to the 'settings.py' file
To generate a scerete key you can run the file 'secretKeyGenerator.py', it will generate for you in the console a secret key.
Then you can add the generated secret key in your settings.py file:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'db.sqlite3'
}
}
SECRET_KEY = 'GENERATED_SECRET_KEY'