Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1.23 KB

README.md

File metadata and controls

43 lines (29 loc) · 1.23 KB

Mindful Journal Backend Service

This backend service empowers you to create a personalized wellness journaling experience using the power of FastAPI and Large Language Models (LLMs).

Key Features:

1. User Management:

Streamlined user signup and signin processes for secure access.

2. Journal Entry Prompts:

Leverage the insights of LLMs to generate insightful and personalized journal prompts based on user responses to targeted questions. This fosters deeper self-reflection and exploration of emotions.

3. Journal Entry Storage

Safely store and retrieve journal entries, allowing users to revisit past experiences and track their progress over time.

Getting Started:

1. Run in Development

Pre-requisites : Install python in system

Cloning the Repository:

git clone https://github.com/srjchauhan/mindful-journal-backend.git

Installing Dependencies and start:

python -m venv venv
source activate venv/bin/activate
pip install -r requirements.txt
python app.py

2. Run in Docker

Pre-requisites : Install docker in system

docker build -t mindfull-backend-service:latest .
docker run -d --name mindfull-backend -p 8000:8000 mindfull-backend-service:latest