This Django project provides a simple API for storing state information. It allows users to create, read, update, and delete state entries using HTTP requests.
- Clone this repository.
- Install the required dependencies using
pip install -r requirements.txt
. - make migrations using
python manage.py makemigrations
- Run migrations using
python manage.py migrate
. - run test using
python manage.py test
- run server using
python manage.py runserver