This backend service empowers you to create a personalized wellness journaling experience using the power of FastAPI and Large Language Models (LLMs).
Streamlined user signup and signin processes for secure access.
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.
Safely store and retrieve journal entries, allowing users to revisit past experiences and track their progress over time.
git clone https://github.com/srjchauhan/mindful-journal-backend.git
python -m venv venv
source activate venv/bin/activate
pip install -r requirements.txt
python app.py
docker build -t mindfull-backend-service:latest .
docker run -d --name mindfull-backend -p 8000:8000 mindfull-backend-service:latest