Loading repository data…
Loading repository data…
Henrique-Teruya / repository
Poetify is a simple AI-powered web app that transforms everyday text into expressive poetry. With a clean Apple-inspired interface and smooth animations, users can choose styles like romantic, dark, or philosophical and instantly generate poetic versions of their words. Built with HTML, CSS, JavaScript, and a minimal Node.js backend.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
Poetify is a simple AI-powered web app that transforms everyday text into expressive poetry. With a clean Apple-inspired interface and smooth animations, users can choose styles like romantic, dark, or philosophical and instantly generate poetic versions of their words.
poetify/
├── frontend/
│ ├── index.html
│ ├── style.css
│ └── script.js
│
├── backend/
│ ├── server.js
│ └── .env
git clone https://github.com/your-username/poetify.git
cd poetify
cd backend
npm install
Create a .env file:
OPENAI_API_KEY=your_api_key_here
Run the server:
node server.js
Just open:
frontend/index.html
(or use Live Server)
/poetifyRequest:
{
"text": "your text here",
"style": "romantic"
}
Response:
{
"result": "poetic version..."
}
This project is open-source and available under the MIT License.
Built to explore creative UI design + AI integration with a focus on simplicity and user experience.