commit c6339774b073785fa109f0901f04e2033e2d8643 Author: Oliver Date: Thu Mar 12 13:20:04 2026 -0300 empty diff --git a/index.html b/index.html new file mode 100644 index 0000000..65704dc --- /dev/null +++ b/index.html @@ -0,0 +1,86 @@ + + + + + + Odoo Apps & AI-Powered Development + + + + + + + +
+
+

Odoo Apps Developed by Experts

+

We create custom Odoo apps powered by AI to streamline your business processes efficiently.

+ Get Started +
+
+ + +
+
+

Start Your Odoo Project Today

+
+
+ + +
+
+ + +
+
+ + +
+ +
+
+
+ + +
+
+

Schedule a Meeting with Our Development Team

+

Discuss your ideas and get expert guidance from our experienced developers.

+ Book a Meeting +
+
+ + +
+
+

Explore Our Upcoming N8N Modules

+

Automate your workflows seamlessly with our custom-built N8N integrations. Coming soon!

+
+
+

Module 1

+

Integrate Odoo CRM with N8N for smart automation and lead management.

+
+
+

Module 2

+

Automate accounting and invoicing with N8N workflows and Odoo apps.

+
+
+

Module 3

+

Connect your marketing tools to Odoo through N8N for efficient campaigns.

+
+
+
+
+ + + + + + diff --git a/start b/start new file mode 100755 index 0000000..00c9e04 --- /dev/null +++ b/start @@ -0,0 +1,20 @@ +#!/bin/bash + + +#!/bin/bash + +# Simple static file server with live reload +# Requires Node.js and live-server + +# Check if live-server is installed +if ! command -v live-server &> /dev/null +then + echo "Installing live-server..." + npm install -g live-server +fi + +# Serve the current directory with auto-reload +echo "Starting live-server on http://localhost:8080 ..." +live-server . + +