Skip to content

Web APP to create a wordle game where you have to guess the name of the anime, based on its

Notifications You must be signed in to change notification settings

Javier-Jimenez99/Animdle

Repository files navigation

Animdle

Web APP to create a wordle game where you have to guess the name of the anime, based on its openings.

Configuración del Entorno

To execute this project, it is recommended to create a virtual environment using Conda. Follow the next steps:

  1. Install Conda.

  2. Clone this repo:

    git clone https://github.com/Javier-Jimenez99/Animdle
    cd Animdle
    
  3. Create a virtual environment with the environment.yml file:

    conda env create -f environment.yml
    
  4. Activate the virtual environment:

    conda activate animdle
    
  5. Install node dependencies:

    cd frontend
    npm install
    

Ejecutar el Proyecto (TODO: fix this)

A continuación, puedes ejecutar el proyecto con los siguientes pasos:

  1. Backend (Django):
  • Navega a la carpeta 'backend':
    cd animdle_back
    
  • Ejecuta las migraciones para configurar la base de datos:
    python manage.py migrate
    
  • Inicia el servidor Django:
    python manage.py runserver
    
  1. Frontend (React):
  • Navega a la carpeta 'frontend':
    cd frontend
    
  • Instala las dependencias de Node.js:
    npm install
    
  • Inicia la aplicación React:
    npm start
    

Abre tu navegador y ve a http://localhost:3000 para ver la aplicación en acción.

¡Listo! Ahora deberías tener el entorno configurado y el proyecto en funcionamiento en tu máquina local.