Metadata-Version: 2.1
Name: emodjis
Version: 0.2.0
Summary: Emoticons server using Django
Author-Email: Frédéric Meurou <frederic@meurou.com>
License: MIT
Requires-Python: >=3.10
Requires-Dist: Django>=4.2
Requires-Dist: djangorestframework~=3.14.0
Requires-Dist: drf-spectacular>=0.26
Requires-Dist: requests~=2.31.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: django-filter~=23.2
Requires-Dist: redis~=5.0.0
Requires-Dist: djangorestframework-simplejwt>=5.3
Requires-Dist: django-cors-headers~=4.2.0
Requires-Dist: psycopg[binary]~=3.1.10
Requires-Dist: pillow~=10.1.0
Description-Content-Type: text/markdown

# emodjis


## Install

pip install emodjis

## Configuration

Add 

> ["rest_framework",
"django_filters",
"drf_spectacular",
"corsheaders",
"emodjis",]

to INSTALLED_APPS in your django settings.

Set SPECTACULAR_SETTINGS and REST_FRAMEWORK in your settings.

set a .env file with the following values:

> SERVER_URL=http://127.0.0.1:8000

> CORS_ALLOWED_ORIGINS=http://127.0.0.1:8000

> DB_ENGINE=

> DB_HOST=

> DB_USER=

> DB_PASSWORD=

> DB_PORT=
