SlideShare uma empresa Scribd logo
1 de 16
Baixar para ler offline
DRUPAL CONSOLE
WWW.DRUPALCONSOLE.COM
Martin Hasoň
12. 11. 2015
8. setkání přátel Symfony a Drupal v Brně
CO JE DRUPAL CONSOLE
Kolekce příkazů pro generování kódu a práci s Drupal 8.
Narozdíl od Drush je použita Symfony Console.
Nástroj umožňující ovládat a nastavit Drupal8 bez
webového rozhraní.
Instalace
$ php ­r "readfile('http://drupalconsole.com/installer');" | php
$ mv console.phar /usr/local/bin/drupal
$ drupal init
STAŽENÍ DRUPAL8
$ drupal site:new demo
[+] Getting releases for Drupal
Please select your favorite release
  [8.0.0­rc3    ] 8.0.0­rc3
  [8.0.0­rc2    ] 8.0.0­rc2
  [8.0.0­rc1    ] 8.0.0­rc1
  [8.0.0­beta16 ] 8.0.0­beta16
  [8.0.0­beta15 ] 8.0.0­beta15
  [8.0.0­beta14 ] 8.0.0­beta14
  [8.0.0­beta13 ] 8.0.0­beta13
  [8.0.0­beta12 ] 8.0.0­beta12
  [8.0.0­beta11 ] 8.0.0­beta11
  [8.0.0­beta10 ] 8.0.0­beta10
  [8.0.0­beta9  ] 8.0.0­beta9
  [8.0.0­beta7  ] 8.0.0­beta7
  [8.0.0­beta6  ] 8.0.0­beta6
  [8.0.0­beta4  ] 8.0.0­beta4
  [8.0.0­beta3  ] 8.0.0­beta3
  [8.0.0­beta2  ] 8.0.0­beta2
  [8.0.0­beta1  ] 8.0.0­beta1
  [8.0.0­alpha15] 8.0.0­alpha15
  [8.0.0­alpha14] 8.0.0­alpha14
  [8.0.x­dev    ] 8.0.x­dev
 > 8.0.0­rc3
[+] Downloading Drupal 8.0.0­rc3
[+] Extracting files for Drupal 8.0.0­rc3
[+] Drupal 8.0.0­rc3 was downloaded in directory demo
INSTALACE DRUPAL8
$ cd demo
$ drupal site:install
Select Drupal profile to be installed
  [Minimal ] Minimal
  [Standard] Standard
 > Standard
Select language for your Drupal installation [English]: Czech
commands.migrate.setup.migrations.questions.db­type
  [SQLite                                       ] SQLite
  [MySQL, MariaDB, Percona Server, or equivalent] MySQL, MariaDB, Percona Server, or equivalent
 > MySQL, MariaDB, Percona Server, or equivalent
Database Host [127.0.0.1]: 
Database Name: drupal8_demo   
Database User: root
Database Pass: 
Database Prefix: 
Database Port [3306]: 
Provide your Drupal site name [Drupal 8 Site Install]: Drupal8 Demo
Provide your Drupal site mail [admin@example.com]: 
Provide your Drupal administrator account name [admin]: 
Provide your Drupal administrator account mail [admin@example.com]: 
Provide your Drupal administrator account password: 
[­] Starting Drupal 8 install process
[­] Your Drupal 8 installation was completed sucessfully
PŘÍKAZY PRO DEBUGOVÁNÍ
$ drupal config:debug       # Výpis konfigurace
$ drupal container:debug    # Seznam služeb
$ drupal cron:debug         # Seznam modulů s úlohami pro cron
$ drupal database:log:debug
$ drupal migrate:debug      # Seznam dostupných migrací
$ drupal module:debug       # Seznam dostupných modulů
$ drupal multisite:debug 
$ drupal rest:debug         # Seznam REST zdrojů
$ drupal router:debug       # Seznam rout
$ drupal site:debug         # Seznam lokálních i remote webů
$ drupal update:debug
$ drupal views:debug
PŘIDÁNÍ WEBROFILERU A LIŠTY
$ drupal module:download webprofiler
[+] Getting releases for module webprofiler
Please select your favorite release
  [8.x­2.0­rc3    ] 8.x­2.0­rc3
  [8.x­2.0­rc2    ] 8.x­2.0­rc2
  [8.x­2.0­rc1    ] 8.x­2.0­rc1
  [8.x­2.0­beta16 ] 8.x­2.0­beta16
  [8.x­2.0­beta15 ] 8.x­2.0­beta15
  [8.x­1.1­beta15 ] 8.x­1.1­beta15
  [8.x­1.1­beta13 ] 8.x­1.1­beta13
  ...
 > 8.x­2.0­rc3
[­] Downloading module webprofiler release 8.x­2.0­rc3
[­] Module webprofiler version 8.x­2.0­rc3 was downloaded successfully
$ drupal module:install webprofiler
KONFIGURACE WEBPROFILERU
$ drupal config:edit webprofiler.config
purge_on_cache_clear: true
storage: profiler.database_storage
exclude: "/contextual/*rn/toolbar/*rn/edit/*rn*.jsrn*.css"
ide_link: 'subl://open?url=file://@file&line=@line'
active_toolbar_items:
  assets: assets
  blocks: blocks
  cache: cache
  config: config
  database: database
  events: events
  drupal_extension: drupal_extension
  forms: '0'
  http: '0'
  php_config: php_config
  performance_timing: performance_timing
  request: request
  routing: routing
  services: services
  state: state
  theme: theme
  time: time
  translations: translations
  user: user
  views: views
  mail: '0'
query_sort: source
query_highlight: 5
langcode: cs
KONFIGURACE WEBPROFILERU
DRUPAL8 TIMELINE
SYMFONY TIMELINE
UŽITEČNÉ PŘÍKAZY
Změna módu aplikace
$ drupal site:mode prod
$ drupal site:mode dev
Stránka údržby
$ drupal site:maintenance on
$ drupal site:maintenance off
Export a import nastavení
$ drupal config:export
$ drupal config:import
VLASTNÍ MODUL
$ drupal generate:module
 Welcome to the Drupal module generator 
Enter the new module name: demo
Enter the module machine name [demo]: 
Enter the module Path [/modules/custom]: 
Enter module description [My Awesome Module]: My Demo module
Enter package name [Other]: 
Enter Drupal Core version [8.x]: 
Define module as feature [no]? 
Do you want to add a composer.json file to your module [no]? yes
Would you like to add module dependencies [no]? 
Do you confirm generation [yes]? 
 Generated or updated files 
Site path: /home/hason/Projekty/drupal­test/demo
1 ­ modules/custom/demo/demo.info.yml
2 ­ modules/custom/demo/demo.module
3 ­ modules/custom/demo/composer.json
$ drupal module:install demo
VLASTNÍ CONTROLLER
$ drupal generate:controller
 Welcome to the Drupal Controller generator 
Enter the module name: demo
Enter the Controller class name [DefaultController]: HelloController
Controller title: Hello
Enter the action method name [index]: hello
Enter the route path [demo/hello/{param_1}/{param_2}]: demo/hello/{name} 
Controller title (empty to start with code generation): 
Do you want to generate a unit test class [yes]? no
Do you want to load services from the container [no]? yes
Type the service name or use keyup or keydown.
This is optional, press enter to continue
Enter your service: twig
Enter your service: 
Do you confirm generation [yes]? 
 Generated or updated files 
Site path: /home/hason/Projekty/drupal­test/demo
1 ­ modules/custom/demo/src/Controller/HelloController.php
2 ­ modules/custom/demo/demo.routing.yml
[+] Rebuilding routes, wait a moment please
[+] Done rebuilding route(s).
VLASTNÍ CONTROLLER
<?php
// modules/custom/demo/src/Controller/HelloController.php
namespace DrupaldemoController;
use DrupalComponentUtilityHtml;
use DrupalCoreControllerControllerBase;
use DrupalCoreTemplateTwigEnvironment;
use SymfonyComponentDependencyInjectionContainerInterface;
class HelloController extends ControllerBase {
  protected $twig;
  public function __construct(TwigEnvironment $twig) {
    $this­>twig = $twig;
  }
  public static function create(ContainerInterface $container) {
    return new static(
      $container­>get('twig')
    );
  }
  public function hello($name) {
    return [
        '#type' => 'markup',
        '#markup' => sprintf('Hello %s!', Html::escape($name)),
    ];
  }
}
VLASTNÍ CONTROLLER A ŠABLONA
// modules/custom/demo/src/Controller/HelloController.php
//...
use SymfonyComponentHttpFoundationRequest;
use SymfonyComponentHttpFoundationResponse;
class HelloController extends ControllerBase {
  // ...
  public function hello(Request $request, $name) {
    return new Response(
        $this­>twig­>render('@demo/hello.html.twig', ['name' => $name])
    );
  }
  // ...
}
{# modules/custom/demo/templates/hello.html.twig #}
Hello {{ name }}!
A TO UŽ JSME V SYMFONY!
https://github.com/hason
https://twitter.com/@hasonm
https://www.webuni.cz

Mais conteúdo relacionado

Semelhante a Drupal console

Managing your Drupal project with Composer
Managing your Drupal project with ComposerManaging your Drupal project with Composer
Managing your Drupal project with ComposerMatt Glaman
 
Rhel8 Beta - Halifax RHUG
Rhel8 Beta - Halifax RHUGRhel8 Beta - Halifax RHUG
Rhel8 Beta - Halifax RHUGNicole Maselli
 
Building Your Own Drupal Distribution
Building Your Own Drupal DistributionBuilding Your Own Drupal Distribution
Building Your Own Drupal DistributionAniket Maithani
 
RHEL8-BETA-RHUG.pdf
RHEL8-BETA-RHUG.pdfRHEL8-BETA-RHUG.pdf
RHEL8-BETA-RHUG.pdfHarsh Shah
 
Face your fears: Drush and Aegir
Face your fears: Drush and AegirFace your fears: Drush and Aegir
Face your fears: Drush and AegirIztok Smolic
 
Drupal 8 update: May 2014. Migrate in core.
Drupal 8 update: May 2014. Migrate in core.Drupal 8 update: May 2014. Migrate in core.
Drupal 8 update: May 2014. Migrate in core.Vladimir Roudakov
 
Drupal VM for Drupal 8 Dev - Drupal Camp STL 2017
Drupal VM for Drupal 8 Dev - Drupal Camp STL 2017Drupal VM for Drupal 8 Dev - Drupal Camp STL 2017
Drupal VM for Drupal 8 Dev - Drupal Camp STL 2017Jeff Geerling
 
Modernize Your Drupal Development
Modernize Your Drupal DevelopmentModernize Your Drupal Development
Modernize Your Drupal DevelopmentChris Tankersley
 
[Srijan Wednesday Webinars] Faster and Smarter Development with Drupal Console
[Srijan Wednesday Webinars] Faster and Smarter Development with Drupal Console[Srijan Wednesday Webinars] Faster and Smarter Development with Drupal Console
[Srijan Wednesday Webinars] Faster and Smarter Development with Drupal ConsoleSrijan Technologies
 
Automating Drupal Development: Makefiles, features and beyond
Automating Drupal Development: Makefiles, features and beyondAutomating Drupal Development: Makefiles, features and beyond
Automating Drupal Development: Makefiles, features and beyondNuvole
 
Introduction to Drupal - Installation, Anatomy, Terminologies
Introduction to Drupal - Installation, Anatomy, TerminologiesIntroduction to Drupal - Installation, Anatomy, Terminologies
Introduction to Drupal - Installation, Anatomy, TerminologiesGerald Villorente
 
20120314 voipdrupal-hands-on-webinar
20120314 voipdrupal-hands-on-webinar20120314 voipdrupal-hands-on-webinar
20120314 voipdrupal-hands-on-webinarFreeScholar
 
Satellite 6 - Pupet Introduction
Satellite 6 - Pupet IntroductionSatellite 6 - Pupet Introduction
Satellite 6 - Pupet IntroductionMichael Lessard
 
Lean Drupal Repositories with Composer and Drush
Lean Drupal Repositories with Composer and DrushLean Drupal Repositories with Composer and Drush
Lean Drupal Repositories with Composer and DrushPantheon
 
A Drush Primer - DrupalCamp Chattanooga 2013
A Drush Primer - DrupalCamp Chattanooga 2013A Drush Primer - DrupalCamp Chattanooga 2013
A Drush Primer - DrupalCamp Chattanooga 2013Chris Hales
 
Docker4Drupal 2.1 for Development
Docker4Drupal 2.1 for DevelopmentDocker4Drupal 2.1 for Development
Docker4Drupal 2.1 for DevelopmentWebsolutions Agency
 
Drush A beginners guide to a advanced tool.
Drush A beginners guide to a advanced tool.Drush A beginners guide to a advanced tool.
Drush A beginners guide to a advanced tool.Mediacurrent
 

Semelhante a Drupal console (20)

Managing your Drupal project with Composer
Managing your Drupal project with ComposerManaging your Drupal project with Composer
Managing your Drupal project with Composer
 
Message Queues and Drupal
Message Queues and DrupalMessage Queues and Drupal
Message Queues and Drupal
 
Rhel8 Beta - Halifax RHUG
Rhel8 Beta - Halifax RHUGRhel8 Beta - Halifax RHUG
Rhel8 Beta - Halifax RHUG
 
Building Your Own Drupal Distribution
Building Your Own Drupal DistributionBuilding Your Own Drupal Distribution
Building Your Own Drupal Distribution
 
RHEL8-BETA-RHUG.pdf
RHEL8-BETA-RHUG.pdfRHEL8-BETA-RHUG.pdf
RHEL8-BETA-RHUG.pdf
 
Face your fears: Drush and Aegir
Face your fears: Drush and AegirFace your fears: Drush and Aegir
Face your fears: Drush and Aegir
 
Drupal 8 cli
Drupal 8 cliDrupal 8 cli
Drupal 8 cli
 
Drupal 8 update: May 2014. Migrate in core.
Drupal 8 update: May 2014. Migrate in core.Drupal 8 update: May 2014. Migrate in core.
Drupal 8 update: May 2014. Migrate in core.
 
drupal_training
drupal_trainingdrupal_training
drupal_training
 
Drupal VM for Drupal 8 Dev - Drupal Camp STL 2017
Drupal VM for Drupal 8 Dev - Drupal Camp STL 2017Drupal VM for Drupal 8 Dev - Drupal Camp STL 2017
Drupal VM for Drupal 8 Dev - Drupal Camp STL 2017
 
Modernize Your Drupal Development
Modernize Your Drupal DevelopmentModernize Your Drupal Development
Modernize Your Drupal Development
 
[Srijan Wednesday Webinars] Faster and Smarter Development with Drupal Console
[Srijan Wednesday Webinars] Faster and Smarter Development with Drupal Console[Srijan Wednesday Webinars] Faster and Smarter Development with Drupal Console
[Srijan Wednesday Webinars] Faster and Smarter Development with Drupal Console
 
Automating Drupal Development: Makefiles, features and beyond
Automating Drupal Development: Makefiles, features and beyondAutomating Drupal Development: Makefiles, features and beyond
Automating Drupal Development: Makefiles, features and beyond
 
Introduction to Drupal - Installation, Anatomy, Terminologies
Introduction to Drupal - Installation, Anatomy, TerminologiesIntroduction to Drupal - Installation, Anatomy, Terminologies
Introduction to Drupal - Installation, Anatomy, Terminologies
 
20120314 voipdrupal-hands-on-webinar
20120314 voipdrupal-hands-on-webinar20120314 voipdrupal-hands-on-webinar
20120314 voipdrupal-hands-on-webinar
 
Satellite 6 - Pupet Introduction
Satellite 6 - Pupet IntroductionSatellite 6 - Pupet Introduction
Satellite 6 - Pupet Introduction
 
Lean Drupal Repositories with Composer and Drush
Lean Drupal Repositories with Composer and DrushLean Drupal Repositories with Composer and Drush
Lean Drupal Repositories with Composer and Drush
 
A Drush Primer - DrupalCamp Chattanooga 2013
A Drush Primer - DrupalCamp Chattanooga 2013A Drush Primer - DrupalCamp Chattanooga 2013
A Drush Primer - DrupalCamp Chattanooga 2013
 
Docker4Drupal 2.1 for Development
Docker4Drupal 2.1 for DevelopmentDocker4Drupal 2.1 for Development
Docker4Drupal 2.1 for Development
 
Drush A beginners guide to a advanced tool.
Drush A beginners guide to a advanced tool.Drush A beginners guide to a advanced tool.
Drush A beginners guide to a advanced tool.
 

Último

Large Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and RepairLarge Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and RepairLionel Briand
 
Machine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringMachine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringHironori Washizaki
 
Salesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZSalesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZABSYZ Inc
 
VictoriaMetrics Anomaly Detection Updates: Q1 2024
VictoriaMetrics Anomaly Detection Updates: Q1 2024VictoriaMetrics Anomaly Detection Updates: Q1 2024
VictoriaMetrics Anomaly Detection Updates: Q1 2024VictoriaMetrics
 
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...Bert Jan Schrijver
 
Strategies for using alternative queries to mitigate zero results
Strategies for using alternative queries to mitigate zero resultsStrategies for using alternative queries to mitigate zero results
Strategies for using alternative queries to mitigate zero resultsJean Silva
 
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...OnePlan Solutions
 
VK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web DevelopmentVK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web Developmentvyaparkranti
 
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full RecordingOpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full RecordingShane Coughlan
 
OpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full Recording
OpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full RecordingOpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full Recording
OpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full RecordingShane Coughlan
 
What’s New in VictoriaMetrics: Q1 2024 Updates
What’s New in VictoriaMetrics: Q1 2024 UpdatesWhat’s New in VictoriaMetrics: Q1 2024 Updates
What’s New in VictoriaMetrics: Q1 2024 UpdatesVictoriaMetrics
 
Enhancing Supply Chain Visibility with Cargo Cloud Solutions.pdf
Enhancing Supply Chain Visibility with Cargo Cloud Solutions.pdfEnhancing Supply Chain Visibility with Cargo Cloud Solutions.pdf
Enhancing Supply Chain Visibility with Cargo Cloud Solutions.pdfRTS corp
 
eSoftTools IMAP Backup Software and migration tools
eSoftTools IMAP Backup Software and migration toolseSoftTools IMAP Backup Software and migration tools
eSoftTools IMAP Backup Software and migration toolsosttopstonverter
 
Precise and Complete Requirements? An Elusive Goal
Precise and Complete Requirements? An Elusive GoalPrecise and Complete Requirements? An Elusive Goal
Precise and Complete Requirements? An Elusive GoalLionel Briand
 
Amazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilitiesAmazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilitiesKrzysztofKkol1
 
Simplifying Microservices & Apps - The art of effortless development - Meetup...
Simplifying Microservices & Apps - The art of effortless development - Meetup...Simplifying Microservices & Apps - The art of effortless development - Meetup...
Simplifying Microservices & Apps - The art of effortless development - Meetup...Rob Geurden
 
Sending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdfSending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdf31events.com
 
Ronisha Informatics Private Limited Catalogue
Ronisha Informatics Private Limited CatalogueRonisha Informatics Private Limited Catalogue
Ronisha Informatics Private Limited Catalogueitservices996
 
SoftTeco - Software Development Company Profile
SoftTeco - Software Development Company ProfileSoftTeco - Software Development Company Profile
SoftTeco - Software Development Company Profileakrivarotava
 
SensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving CarsSensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving CarsChristian Birchler
 

Último (20)

Large Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and RepairLarge Language Models for Test Case Evolution and Repair
Large Language Models for Test Case Evolution and Repair
 
Machine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringMachine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their Engineering
 
Salesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZSalesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZ
 
VictoriaMetrics Anomaly Detection Updates: Q1 2024
VictoriaMetrics Anomaly Detection Updates: Q1 2024VictoriaMetrics Anomaly Detection Updates: Q1 2024
VictoriaMetrics Anomaly Detection Updates: Q1 2024
 
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
JavaLand 2024 - Going serverless with Quarkus GraalVM native images and AWS L...
 
Strategies for using alternative queries to mitigate zero results
Strategies for using alternative queries to mitigate zero resultsStrategies for using alternative queries to mitigate zero results
Strategies for using alternative queries to mitigate zero results
 
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
 
VK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web DevelopmentVK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web Development
 
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full RecordingOpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
OpenChain Education Work Group Monthly Meeting - 2024-04-10 - Full Recording
 
OpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full Recording
OpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full RecordingOpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full Recording
OpenChain AI Study Group - Europe and Asia Recap - 2024-04-11 - Full Recording
 
What’s New in VictoriaMetrics: Q1 2024 Updates
What’s New in VictoriaMetrics: Q1 2024 UpdatesWhat’s New in VictoriaMetrics: Q1 2024 Updates
What’s New in VictoriaMetrics: Q1 2024 Updates
 
Enhancing Supply Chain Visibility with Cargo Cloud Solutions.pdf
Enhancing Supply Chain Visibility with Cargo Cloud Solutions.pdfEnhancing Supply Chain Visibility with Cargo Cloud Solutions.pdf
Enhancing Supply Chain Visibility with Cargo Cloud Solutions.pdf
 
eSoftTools IMAP Backup Software and migration tools
eSoftTools IMAP Backup Software and migration toolseSoftTools IMAP Backup Software and migration tools
eSoftTools IMAP Backup Software and migration tools
 
Precise and Complete Requirements? An Elusive Goal
Precise and Complete Requirements? An Elusive GoalPrecise and Complete Requirements? An Elusive Goal
Precise and Complete Requirements? An Elusive Goal
 
Amazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilitiesAmazon Bedrock in Action - presentation of the Bedrock's capabilities
Amazon Bedrock in Action - presentation of the Bedrock's capabilities
 
Simplifying Microservices & Apps - The art of effortless development - Meetup...
Simplifying Microservices & Apps - The art of effortless development - Meetup...Simplifying Microservices & Apps - The art of effortless development - Meetup...
Simplifying Microservices & Apps - The art of effortless development - Meetup...
 
Sending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdfSending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdf
 
Ronisha Informatics Private Limited Catalogue
Ronisha Informatics Private Limited CatalogueRonisha Informatics Private Limited Catalogue
Ronisha Informatics Private Limited Catalogue
 
SoftTeco - Software Development Company Profile
SoftTeco - Software Development Company ProfileSoftTeco - Software Development Company Profile
SoftTeco - Software Development Company Profile
 
SensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving CarsSensoDat: Simulation-based Sensor Dataset of Self-driving Cars
SensoDat: Simulation-based Sensor Dataset of Self-driving Cars
 

Drupal console