Skip to content

AssoulYasser/To-Do-List-Server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

Project Description

This project is a simple To Do application which will take the tasks and save them into our server database.

Programming languages

In this project we used Kotlin language for developing the android application and Django Rest framework to develope the back-end Api.


Requirement

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

Cloning this project

To clone this project you will need to add Secret key and Database to the 'settings.py' file

Generating a secret key

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'

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages