fix: update project name from OpenWokwi to Velxio in documentation and configuration
parent
26f9e96c37
commit
2a4415753e
14
README.md
14
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.
|
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.
|
If you find this project helpful, please consider giving it a star! Your support helps the project grow and motivates continued development.
|
||||||
|
|
||||||
[](https://github.com/davidmonterocrespo24/openwokwi/stargazers)
|
[](https://github.com/davidmonterocrespo24/velxio/stargazers)
|
||||||
[](https://github.com/sponsors/davidmonterocrespo24)
|
[](https://github.com/sponsors/davidmonterocrespo24)
|
||||||
[](https://paypal.me/odoonext)
|
[](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.
|
The fastest way to get started. Requires only [Docker](https://docs.docker.com/get-docker/) and Docker Compose.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/davidmonterocrespo24/openwokwi.git
|
git clone https://github.com/davidmonterocrespo24/velxio.git
|
||||||
cd openwokwi
|
cd velxio
|
||||||
docker compose up --build
|
docker compose up --build
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -217,8 +217,8 @@ docker compose down
|
||||||
|
|
||||||
#### 1. Clone the repository
|
#### 1. Clone the repository
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/davidmonterocrespo24/openwokwi.git
|
git clone https://github.com/davidmonterocrespo24/velxio.git
|
||||||
cd openwokwi
|
cd velxio
|
||||||
```
|
```
|
||||||
|
|
||||||
#### 2. Setup Backend
|
#### 2. Setup Backend
|
||||||
|
|
@ -285,7 +285,7 @@ The frontend will be available at:
|
||||||
## Project Structure
|
## Project Structure
|
||||||
|
|
||||||
```
|
```
|
||||||
openwokwi/
|
velxio/
|
||||||
├── frontend/ # React + Vite + TypeScript
|
├── frontend/ # React + Vite + TypeScript
|
||||||
│ ├── src/
|
│ ├── src/
|
||||||
│ │ ├── components/
|
│ │ ├── components/
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ from pydantic_settings import BaseSettings
|
||||||
|
|
||||||
class Settings(BaseSettings):
|
class Settings(BaseSettings):
|
||||||
SECRET_KEY: str = "change-me-in-production-use-a-long-random-string"
|
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_ID: str = ""
|
||||||
GOOGLE_CLIENT_SECRET: str = ""
|
GOOGLE_CLIENT_SECRET: str = ""
|
||||||
FRONTEND_URL: str = "http://localhost:5173"
|
FRONTEND_URL: str = "http://localhost:5173"
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# Project Architecture - OpenWokwi Arduino Emulator
|
# Project Architecture - Velxio Arduino Emulator
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# Estado del Proyecto - OpenWokwi Arduino Emulator
|
# Estado del Proyecto - Velxio Arduino Emulator
|
||||||
|
|
||||||
## Resumen de Funcionalidades Implementadas
|
## Resumen de Funcionalidades Implementadas
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue