Text Adventure
Text Adventure Generator Web Application
https://github.com/kliewerdaniel/textadventure07
This is a web application that allows users to generate interactive text adventures from images. The application uses Next.js for the frontend and integrates with a Python script for generating the text adventures.
Features
- Image Upload: Upload one or more images to generate your adventure
- Customization Options: Adjust parameters like narrative style, temperature, and story length
- Interactive Results: View the generated adventure with interactive choices
Getting Started
Prerequisites
- Node.js 18.0.0 or later
- Python 3.8 or later
- Ollama (for running local AI models)
Installation
-
Clone the repository:
git clone https://github.com/kliewerdaniel/textadventure07.git cd textadventure07
-
Install Python dependencies:
pip install -r requirements.txt
-
Install Node.js dependencies:
cd text-adventure-web npm install
Running the Application
-
Start the development server:
npm run dev
-
Open http://localhost:3000/app in your browser to see the application.
Important: Make sure to access the
/app
route to avoid hydration issues.
Deployment
This application is configured for deployment on Netlify:
-
Push your code to a GitHub repository.
-
Connect your repository to Netlify:
- Sign in to Netlify
- Click "New site from Git"
- Select your repository
- Configure build settings:
- Build command:
npm run build
- Publish directory:
.next
- Build command:
-
Configure environment variables in Netlify:
- Set any required environment variables for your Python script
Project Structure
-
text-adventure-web/
: Next.js web applicationsrc/app/
: Application source codeapi/
: API routes for handling requestsapp/
: Client-side only application routecomponents/
: React componentsutils/
: Utility functions
public/
: Static assets
-
main.py
: Python script for generating text adventures -
requirements.txt
: Python dependencies
How It Works
- Users upload images through the web interface
- The application sends the images to the API
- The API executes the Python script with the provided parameters
- The Python script generates a text adventure based on the images
- The results are returned to the web interface for display