diff --git a/README.md b/README.md index 62bf52d..7db8925 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# OpenWokwi - Arduino Emulator +# Velxio - Arduino Emulator A fully local, open-source Arduino emulator inspired by [Wokwi](https://wokwi.com). Write Arduino code, compile it, and simulate it with real AVR8 CPU emulation and 48+ interactive electronic components — all running in your browser. @@ -6,7 +6,7 @@ A fully local, open-source Arduino emulator inspired by [Wokwi](https://wokwi.co If you find this project helpful, please consider giving it a star! Your support helps the project grow and motivates continued development. -[![GitHub stars](https://img.shields.io/github/stars/davidmonterocrespo24/openwokwi?style=social)](https://github.com/davidmonterocrespo24/openwokwi/stargazers) +[![GitHub stars](https://img.shields.io/github/stars/davidmonterocrespo24/velxio?style=social)](https://github.com/davidmonterocrespo24/velxio/stargazers) [![Sponsor](https://img.shields.io/badge/Sponsor-GitHub%20Sponsors-pink?logo=githubsponsors)](https://github.com/sponsors/davidmonterocrespo24) [![PayPal](https://img.shields.io/badge/Donate-PayPal-blue?logo=paypal)](https://paypal.me/odoonext) @@ -196,8 +196,8 @@ arduino-cli core install rp2040:rp2040 The fastest way to get started. Requires only [Docker](https://docs.docker.com/get-docker/) and Docker Compose. ```bash -git clone https://github.com/davidmonterocrespo24/openwokwi.git -cd openwokwi +git clone https://github.com/davidmonterocrespo24/velxio.git +cd velxio docker compose up --build ``` @@ -217,8 +217,8 @@ docker compose down #### 1. Clone the repository ```bash -git clone https://github.com/davidmonterocrespo24/openwokwi.git -cd openwokwi +git clone https://github.com/davidmonterocrespo24/velxio.git +cd velxio ``` #### 2. Setup Backend @@ -285,7 +285,7 @@ The frontend will be available at: ## Project Structure ``` -openwokwi/ +velxio/ ├── frontend/ # React + Vite + TypeScript │ ├── src/ │ │ ├── components/ diff --git a/backend/app/core/config.py b/backend/app/core/config.py index a25c77b..a33d0c3 100644 --- a/backend/app/core/config.py +++ b/backend/app/core/config.py @@ -3,7 +3,7 @@ from pydantic_settings import BaseSettings class Settings(BaseSettings): SECRET_KEY: str = "change-me-in-production-use-a-long-random-string" - DATABASE_URL: str = "sqlite+aiosqlite:///./openwokwi.db" + DATABASE_URL: str = "sqlite+aiosqlite:///./velxio.db" GOOGLE_CLIENT_ID: str = "" GOOGLE_CLIENT_SECRET: str = "" FRONTEND_URL: str = "http://localhost:5173" diff --git a/doc/ARCHITECTURE.md b/doc/ARCHITECTURE.md index 1f74b12..d0142d8 100644 --- a/doc/ARCHITECTURE.md +++ b/doc/ARCHITECTURE.md @@ -1,4 +1,4 @@ -# Project Architecture - OpenWokwi Arduino Emulator +# Project Architecture - Velxio Arduino Emulator ## Overview diff --git a/doc/SETUP_COMPLETE.md b/doc/SETUP_COMPLETE.md index a27f76e..c1d5461 100644 --- a/doc/SETUP_COMPLETE.md +++ b/doc/SETUP_COMPLETE.md @@ -1,4 +1,4 @@ -# Estado del Proyecto - OpenWokwi Arduino Emulator +# Estado del Proyecto - Velxio Arduino Emulator ## Resumen de Funcionalidades Implementadas