Kallithea Deployment Release 0.0

Total Page:16

File Type:pdf, Size:1020Kb

Kallithea Deployment Release 0.0 Kallithea Deployment Release 0.0 Wolfgang Scherer Jan 10, 2020 Quickstart Local: • Deployment documentation: Kallithea deployment documentation • Deployment repository: Kallithea deployment repository • Installed instance: Kallithea installed instance Official: • Web-Site: Kallithea • Documentation: Kallithea Documentation • Repository: https://kallithea-scm.org/repos/kallithea • Bitbucket: conservancy / kallithea - Bitbucket (as long as it still works) Abstract CONTENTS List of Figures ii List of Tables iii List of Code Blocks iv 1 Installation 1 1.1 Get deployment package.......................................1 1.2 System packages...........................................1 1.3 Installation / update.........................................1 1.4 Initial setup..............................................2 1.5 Initialize repository defaults.....................................2 1.6 Setup repos/incoming........................................3 1.7 Create clone script..........................................3 1.8 Full text search............................................3 1.9 Install a language file for en .....................................3 2 Update 5 2.1 Database update...........................................5 3 Serve with gearbox 6 4 npm on Debian 7 5 Apache configuration 8 6 Kallithea deployment 10 6.1 Repositories............................................. 10 6.2 Documentation............................................ 10 7 LDAP 11 8 Bug: Logging re-initialized in make_app() 12 8.1 Paste Deploy WSGI app configuration................................ 12 8.2 Paste Script logging......................................... 13 8.3 Gearbox............................................... 15 8.4 Pyramid................................................ 17 8.5 kallithea-cli.............................................. 19 8.6 Kallithea details........................................... 19 9 Accept-Language bug 21 9.1 Solution with i18n.notrans patch................................... 21 10 Patch needed for Python 2.7.3 24 i LIST OF FIGURES 8.1 loadapp call chain........................................... 13 ii LIST OF TABLES iii LIST OF CODE BLOCKS iv CHAPTER ONE INSTALLATION See Installation on Unix/Linux On Debian, NPM must be installed (see section4, npm on Debian). 1.1 Get deployment package cd" ${HOME}/project" mkdir -p kallithea cd kallithea isy -n Edit .sync.defs to reflect correct info: @RUSER sw @RHOST scherer.wiedenmann.intern @SCP_REMOTE /home/sw/project/kallithea Get package: ./sync.sh --restore 1.2 System packages sudo apt-get install --yes build-essential git python-pip python-virtualenv libffi-dev python- ,!dev nodejs test -r /usr/bin/node || sudo ln -s nodejs /usr/bin/node; node --version test -r /usr/bin/npm || sudo apt-get install --yes npm # Ubuntu 18.04 Up to date packages for mercurial and tortoisehg are on sw-amt.ws. apt-get install --yes tortoisehg 1.3 Installation / update cd" ${HOME}/project" mkdir -p kallithea cd kallithea test -d kallithea || \ hg clone https://kallithea-scm.org/repos/kallithea -u stable cd kallithea (continues on next page) 1 Kallithea Deployment, Release 0.0 (continued from previous page) test -d ../kallithea-venv || \ ( virtualenv ../kallithea-venv ../kallithea-venv/bin/pip install --upgrade pip setuptools ) . ../kallithea-venv/bin/activate pip install --upgrade -e . python2 setup.py compile_catalog # for translation of the UI 1.4 Initial setup cd" ${HOME}/project" cd kallithea/kallithea mkdir -p ../log Move existing repositories away until the repository defaults (activated statistics and download) are set: ( cd" ${HOME}"/project/kallithea || exit1; \ test ! -d repos ||( mv repos repos-000); \ mkdir -p repos) Create new configuration and update it from an existing one: kallithea-cli config-create cfg-HOSTNAME.ini host=0.0.0.0 port=5020 # update configuration with e.g.: diff -u cfg-sw-amt.ini cfg-HOSTNAME.ini (beware the ,!absolute path names in log handler sections) # (ediff-files "~/project/kallithea/kallithea/cfg-sw-amt.ini" "~/project/kallithea/kallithea/ ,!cfg-HOSTNAME.ini") Generate development and wsgi configurations: ../config_admin.sh link HOSTNAME This installs links to created configurations: Link Configuration config.ini cfg-HOSTNAME.ini config-dev.ini cfg-HOSTNAME-dev.ini config-wsgi.ini cfg-HOSTNAME-wsgi.ini Create new database: kallithea-cli db-create -c config.ini --user=admin --password=ktBE216 --email=edv@ws-gruppe. ,!de --repos="${HOME}"/project/kallithea/repos Build frontend: kallithea-cli front-end-build 1.5 Initialize repository defaults Either serve with gearbox (see section3, Serve with gearbox) or complete Apache configuration (see section5, Apache configuration), then login as admin and activate downloads and statistics for new repositories und Admin - Repositorystandards. 2 Chapter 1. Installation Kallithea Deployment, Release 0.0 Restore existing repository tree: ( cd" ${HOME}"/project/kallithea || exit1; \ test ! -d repos-000 ||( rmdir repos&& mv repos-000 repos)) Clone repositories: cd" ${HOME}"/project/kallithea cp ./clone_repos_sw_scherer.sh ../clone_repo.sh chmod +x ../clone_repo.sh cd.. ./clone_repo.sh Rescan repositories under Admin - Settings - Remap and Rescan, or run: cd" ${HOME}"/project/kallithea/kallithea kallithea-cli repo-scan --config_file config.ini --remove-missing 1.6 Setup repos/incoming Create this as repository group without group access! cd" ${HOME}"/project/kallithea mkdir -p repos/incoming cd repos/incoming ln -s ../../link_repos.sh . 1.7 Create clone script cd" ${HOME}"/project/kallithea/repos/incoming ./link_repos.sh --active >../../clone_repos.sh 1.8 Full text search "${HOME}"/project/kallithea/kallithea-venv/bin/kallithea-cli index-create -c" ${HOME}"/ ,!project/kallithea/kallithea/config.ini --full 'all' /etc/cron.d/local-kallithea: 0 3 *** @user@ test ! -x /home/@user@/project/kallithea/kallithea-venv/bin/kallithea- ,!cli || /home/@user@/project/kallithea/kallithea-venv/bin/kallithea-cli index-create -c / ,!home/@user@/project/kallithea/kallithea/config.ini 1.9 Install a language file for en Having an explcit translation file for English en avoids the bug, where the language en is not used for an Accept-Language header of, e.g., en-US, en;q=0.8, de-DE;q=0.5, de;q=0.3 (see section9, Accept-Language bug). As pointed out by kiilerix in comment of option i18n.notrans for language alias of C locale, the language file can be empty, if option i18n.lang is set: 1.6. Setup repos/incoming 3 Kallithea Deployment, Release 0.0 i18n.lang= en If kallithea does not provide it, the translation file can be generated with: cd ~/project/kallithea . ./activate cd kallithea if test ! -r kallithea/i18n/en/LC_MESSAGES/kallithea.po&& test ! -r kallithea/i18n/en/LC_ ,!MESSAGES/kallithea.mo then python2 setup.py extract_messages # create kallithea/i18n/kallithea.pot python2 setup.py init_catalog -l en # create kallithea/i18n/en/LC_MESSAGES/kallithea.po python2 setup.py compile_catalog -l en # # create kallithea/i18n/en/LC_MESSAGES/kallithea. ,!mo rm -f kallithea/i18n/en/LC_MESSAGES/kallithea.po # clean up, for when .po is distributed ,!by a newer version of Kallithea fi It is also possible to create the empty translation file manually (not recommended) with: mkdir -p kallithea/i18n/en/LC_MESSAGES printf '\x95\x04\x12\xde\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0' > kallithea/i18n/en/LC_MESSAGES/ ,!kallithea.mo 4 Chapter 1. Installation CHAPTER TWO UPDATE See Upgrading Kallithea - Kallithea 0.5.0 documentation 2.1 Database update cd kallithea alembic -c development.ini upgrade head 5 CHAPTER THREE SERVE WITH GEARBOX ." ${HOME}"/project/kallithea/kallithea-venv/bin/activate gearbox serve -c config-dev.ini 6 CHAPTER FOUR NPM ON DEBIAN Needs npm on Debian (https://nodejs.org/fa/download/package-manager/): wget -qO- https://deb.nodesource.com/setup_6.x | sudo -E bash - apt-get install --yes nodejs 7 CHAPTER FIVE APACHE CONFIGURATION apt-get install --yes apache2 libapache2-mod-wsgi Enable system locale in /etc/apache2/envvars (remove # from . /etc/default/locale). /etc/apache2/conf-available/wsgi-kallithea.conf (replace @user@ with correct user): #-*- mode: conf; tab-width: 4; -*- # WSGI script WSGIDaemonProcess kallithea user=@user@ group=@user@ processes=5 threads=1 \ python-path=/home/@user@/project/kallithea/kallithea-venv/lib/python2.7/site-packages:/ ,!home/@user@/project/kallithea/kallithea-venv/lib/python2.7 # lang=de_DE.UTTF-8 WSGIScriptAlias /kallithea /home/@user@/project/kallithea/kallithea-dispatch.wsgi # |:sec:| kallithea <Directory /home/@user@/project/kallithea> RewriteEngine on RewriteCond %{REQUEST_URI} /kallithea$ [NC] RewriteRule ^(.+[^/])$ %{REQUEST_URI}/ [R=301,NC,L] # Use only 1 Python sub-interpreter. Multiple sub-interpreters # play badly with C extensions. WSGIApplicationGroup %{GLOBAL} WSGIPassAuthorization On WSGIProcessGroup kallithea AllowOverride All <IfVersion < 2.3 > Order allow,deny Allow from all </IfVersion> <IfVersion !< 2.3> Require all granted </IfVersion> # # <IfModule mod_authn_sasl.c> # AuthType Basic # AuthName "kallithea" # AuthBasicProvider sasl # # AuthBasicProvider file sasl # AuthBasicAuthoritative On # AuthSaslPwcheckMethod saslauthd # # AuthUserFile /home/@user@/project/kallithea/data/.htpasswd # Require valid-user # # </IfModule> </Directory> # :ide: CMD: restart apache # . (let* ((fp (buffer-file-name)) (fn (file-name-nondirectory fp))) (shell-command (concat "/ ,!etc/init.d/apache2 restart" ) nil nil)) # :ide: CMD: reload apache # . (let* ((fp (buffer-file-name)) (fn (file-name-nondirectory fp))) (shell-command (concat "/
Recommended publications
  • Conteneurs Et Outils De Production De Code
    Conteneurs et outils de production de code https://etherpad.in2p3.fr/p/JDEV2015.T6.GT02 Johan Moreau IRCAD/IHU 2 juillet 2015 Johan Moreau (IRCAD/IHU) Conteneurs et outils de production de code 2 juillet 2015 1 / 11 Entre 1000 et 1 million de LOC Les petits : Annuaire de laboratoire en microservices, Conteneur de backup, Outil de gestion de m´edicaments pour animaux, ... Les gros : Logiciel de traitement d'image pour la mod´elisation anatomique Logiciel de suivi intra-op´eratoire de r´ealit´eaugment´ee, ... Probl´ematiques diff´erentes (performance, distribution, ...) et des choix diff´erents Johan Moreau (IRCAD/IHU) Conteneurs et outils de production de code 2 juillet 2015 2 / 11 Gestion de version VCS : CVS, Subversion, ... DVCS : Mercurial, Git, Bazaar, ... Forge/frontal pour les acc`es: GitHub, Bitbucket, GitLab, Kallithea, ... Redmine, Trac, Bugzilla, ... Quelle organisation de d´ep^otsen fonction de l'outil ? Quelle communication entre les d´ep^ots? Comment faire de la revue de code par rapport au VCS ? Johan Moreau (IRCAD/IHU) Conteneurs et outils de production de code 2 juillet 2015 3 / 11 Construction du job Build : CMake, Ant, Maven, NAnt, SCons, Gradle, Gulp, Grunt ... Compl´ementaire : DOxygen, Javadoc, Sphinx, ... XUnit, Checkstyle, Sonar, FindBugs, CppCheck, JDepend, Selenium, ... A quel point les rapports sont-ils utilis´es? Johan Moreau (IRCAD/IHU) Conteneurs et outils de production de code 2 juillet 2015 4 / 11 Int´egration continue Outils : Cruisecontrol, Jenkins, Buildbot, GitLab CI, ... Travis-ci, Heroku, Codeship, CircleCI, Drone.io, ... Combien de jobs par "target"? Quelle liaison avec la forge ou l'outil de tickets ? Comment lier cela `ala revue de code et `ala m´ethodologie ? Johan Moreau (IRCAD/IHU) Conteneurs et outils de production de code 2 juillet 2015 5 / 11 Conteneurs/VM - x86 Emulateurs, VM : QEMU, VMWare, HyperV, Xen, KVM, ..
    [Show full text]
  • Awesome Selfhosted - Software Development - Project Management
    Awesome Selfhosted - Software Development - Project Management Software Development - Project Management See also: awesome-sysadmin/Code Review Bonobo Git Server - Set up your own self hosted git server on IIS for Windows. Manage users and have full control over your repositories with a nice user friendly graphical interface. ( Source Code) MIT C# Fossil - Distributed version control system featuring wiki and bug tracker. BSD-2-Clause- FreeBSD C Goodwork - Self hosted project management and collaboration tool powered by Laravel & VueJS. (Demo, Source Code) MIT PHP Gitblit - Pure Java stack for managing, viewing, and serving Git repositories. (Source Code) Apache-2.0 Java gitbucket - Easily installable GitHub clone powered by Scala. (Source Code) Apache-2.0 Scala/Java Gitea - Community managed fork of Gogs, lightweight code hosting solution. (Demo, Source Code) MIT Go GitLab - Self Hosted Git repository management, code reviews, issue tracking, activity feeds and wikis. (Demo, Source Code) MIT Ruby Gitlist - Web-based git repository browser - GitList allows you to browse repositories using your favorite browser, viewing files under different revisions, commit history and diffs. ( Source Code) BSD-3-Clause PHP Gitolite - Gitolite allows you to setup git hosting on a central server, with fine-grained access control and many more powerful features. (Source Code) GPL-2.0 Perl GitPrep - Portable Github clone. (Demo, Source Code) Artistic-2.0 Perl Git WebUI - Standalone web based user interface for git repositories. Apache-2.0 Python Gogs - Painless self-hosted Git Service written in Go. (Demo, Source Code) MIT Go Kallithea - Source code management system that supports two leading version control systems, Mercurial and Git, with a web interface.
    [Show full text]
  • Code Review Quality
    Code Review Quality Defining a good code review Overview Introduction: A modern code review process The importance of reviews for QA Strength and weaknesses Tools to make (better) reviews VCS: Git - Keeping track of changes. Gerrit: State of the art for git VCS. Continuous inspection: SonarQube How to define „good“? Factors to assess review quality Case study: How Developers see it Improve Review Quality Current research Defining a good code review 2 What is a modern code review process INTRODUCTION Defining a good code review 3 Introduction A modern review process Defining a good code review 4 Introduction The review value - strengths Coding standards compliance . Code review helps to maintain consistent coding style across the company . Reviews find high level breaches of design rules and consistency issues. Finding subtile bugs and defects early . A person is able to find logical flaws and approach problems, that might be very hard to find with tests. when they are cheap to fix. (Before submitting) Teaching and sharing knowledge . During review team members gain better understanding of the code base and learn from each other Strengthens team cohesion . Review discussions save team members from isolation and bring them closer to each other. Defining a good code review 5 Introduction The review value - weaknesses Highly depends on reviewer's experience and code familiarity . Study showed that the ‘worst’ reviewer can be ten times less effective than the best reviewer. The defect coverage is hard to asses . They might find a lot of different sorts of issues while overlook some potentially serious ones. Has a frustration and conflict potential .
    [Show full text]
  • Statistics Survey 499767 'Alioth Replacement Survey'
    Quick statistics Survey 499767 'Alioth Replacement Survey' Results Survey 499767 Number of records in this query: 317 Total records in survey: 317 Percentage of total: 100.00% page 1 / 62 Quick statistics Survey 499767 'Alioth Replacement Survey' Field summary for Q00001 What is your relationship to the project? Answer Count Percentage Developer (SQ001) 193 61.27% Maintainer (SQ002) 99 31.43% Contributor (SQ003) 125 39.68% User (SQ004) 206 65.40% Package Maintainer (SQ005) 169 53.65% Other 12 3.81% ID Response 2 translator 10 upstream 88 Upstream 102 sysadmin 157 DSA 248 former alioth maintainer 366 Translator 434 Infrastructure Maintainer 443 Ex-developer 480 bug reporter/triager 483 consultant to commercial users 494 Delegate page 2 / 62 Quick statistics Survey 499767 'Alioth Replacement Survey' Field summary for Q00001 What is your relationship to the project? page 3 / 62 Quick statistics Survey 499767 'Alioth Replacement Survey' Field summary for Q00002(SQ001) Which services are you using from alioth. Please rate each service from 1 (never used it) to 5 (very important for my work). [Issue Tracker] Answer Count Percentage Sum 1 (1) 232 79.73% 86.60% 2 (2) 20 6.87% 3 (3) 11 3.78% 3.78% 4 (4) 13 4.47% 5 (5) 13 4.47% 8.93% No answer 26 8.20% Arithmetic mean 0 Standard deviation 0 Sum (Answers) 289 100.00% 100.00% Number of cases 0% page 4 / 62 Quick statistics Survey 499767 'Alioth Replacement Survey' Field summary for Q00002(SQ001) Which services are you using from alioth. Please rate each service from 1 (never used it) to 5 (very important for my work).
    [Show full text]
  • Download Résumé
    seanfarley software engineer and mathematician contact experience [email protected] 2015–now Backend Bitbucket Developer Atlassian (209) SEANFAR • Improved Mercurial support at Bitbucket (732-6327) 04-09 2014 Facebook Contractor Mercurial Project San Francisco, CA • Designed and wrote namespaces API that allows any extension to cleanly operate with bookmarks, tag, and branches website • Created an extension using namespaces API to track remote branches http://farley.io and bookmarks 06-09 2013 Google Summer of Code Student Mercurial Project social • Cleaned up legacy code to provide clear reference points for file status fb://seanfarley • Augmented file-merging framework for in-memory changes google://+SeanFarley • Successful evaluation with over 127 patches accepted (average 20) linkedin://seanmfarley 2010–2013 Graduate Research Assistant Argonne National Laboratory • Published paper on BOUT++, a library for plasma nuclear fusion simulation code • Developed advanced algorithms for nonlinear problems (NGMRES) https://smf.io • Integrated robust time-stepping methods for PETSc (IMEX) bitbucket://seanfarley • Added framework for new mesh capabilities github://seanfarley 2006–2009 Graduate Assistant Louisiana State University • Implemented finite element code (푃1, 푃2) programming • Provided theoretical support for graduate analysis classes Python • Built and maintained a computing cluster for three years for a research C / C++ group using MPI D MPI opensource CUDA Lisp 2013–now Kallithea Cofounder Kallithea Project • Created an opensource Python
    [Show full text]
  • Kallithea Documentation Release 0.7.99
    Kallithea Documentation Release 0.7.99 Kallithea Developers May 27, 2021 Contents 1 Readme 3 2 Administrator guide 7 3 User guide 51 4 Developer guide 79 i ii Kallithea Documentation, Release 0.7.99 • genindex • search Contents 1 Kallithea Documentation, Release 0.7.99 2 Contents CHAPTER 1 Readme 1.1 Kallithea README 1.1.1 About Kallithea is a fast and powerful management tool for Mercurial and Git with a built-in push/pull server, full text search and code-review. It works on HTTP/HTTPS and SSH, has a built-in permission/authentication system with the ability to authenticate via LDAP or ActiveDirectory. Kallithea also provides simple API so it’s easy to integrate with existing external systems. Kallithea is similar in some respects to GitHub or Bitbucket, however Kallithea can be run as standalone hosted application on your own server. It is open-source and focuses more on providing a customised, self-administered interface for Mercurial and Git repositories. Kallithea works on Unix-like systems and Windows. Kallithea was forked from RhodeCode in July 2014 and has been heavily modified. 1.1.2 Installation Kallithea requires Python 3 and it is recommended to install it in a virtualenv. Official releases of Kallithea can be installed with: pip install kallithea The development repository is kept very stable and used in production by the developers – you can do the same. Please visit https://docs.kallithea-scm.org/en/latest/installation.html for more details. There is also an experimental Puppet module for installing and setting up Kallithea. Currently, only basic functionality is provided, but it is still enough to get up and running quickly, especially for people without Python background.
    [Show full text]
  • Kallithea Documentation Release 0.3.1
    Kallithea Documentation Release 0.3.1 Kallithea Developers Apr 12, 2017 Contents 1 Kallithea README 3 2 Installation overview 9 3 Installation on Unix/Linux 11 4 Installation and upgrade on Windows (7/Server 2008 R2 and newer) 15 5 Installation and upgrade on Windows (XP/Vista/Server 2003/Server 2008) 21 6 Installing Kallithea on Microsoft Internet Information Services (IIS) 27 7 Setup 29 8 Installation and setup using Puppet 41 9 General Kallithea usage 45 10 Version control systems support 49 11 Repository locking 51 12 Repository statistics 53 13 Email settings 55 14 Optimizing Kallithea performance 57 15 Backing up Kallithea 59 16 Debugging Kallithea 61 17 Troubleshooting 63 18 Contributing to Kallithea 65 19 Translations 69 20 Changelog 73 i 21 API 75 22 The models module 93 23 Other topics 99 Python Module Index 101 ii Kallithea Documentation, Release 0.3.1 Readme Contents 1 Kallithea Documentation, Release 0.3.1 2 Contents CHAPTER 1 Kallithea README About Kallithea is a fast and powerful management tool for Mercurial and Git with a built-in push/pull server, full text search and code-review. It works on http/https and has a built in permission/authentication system with the ability to authenticate via LDAP or ActiveDirectory. Kallithea also provides simple API so it’s easy to integrate with existing external systems. Kallithea is similar in some respects to GitHub or Bitbucket, however Kallithea can be run as standalone hosted application on your own server. It is open-source donationware and focuses more on providing a customised, self- administered interface for Mercurial and Git repositories.
    [Show full text]
  • Code Repository Software
    Code repository software There are various types of source code repository hosts available, deals in the world of code, GitHub looks to help developers build software. A source code repository is a file archive and web hosting facility where a large amount of source code, for software or for web pages, is kept, either publicly or ​General information · ​Features · ​Popularity · ​Specialized hosting facilities. We've also written a blog post about one of our staff member's experiences of choosing a code repository. It provides further information about which repository. Collaborate on code with inline comments and pull requests. Manage and share your Git repositories to build and ship software, as a team. A good source code repository host is especially useful for DevOps Kiln, from Frog Creek Software, is a paid source code host for Git and. Built for developers. GitHub is a development platform inspired by the way you work. From open source to business, you can host and review code, manage. A repository is a term used by most of the different source control tools If you're happy to have your source code in the cloud, git hub might be. While you are trying to find the best web-based hosting service for software development It seems to be today's Status Quo for source code repositories. Linux GUIs · Tarballs · Mac Build · Source Code Patches, suggestions and comments are welcome. Git is a member of Software Freedom Conservancy. Google Code was supposed to spread the open source religion. big money—by freely sharing software code with the world at large.
    [Show full text]
  • Current Member Projects
    About News Blog Membership Sponsors GPL Compliance NPOAcct Donate Become a Supporter! Members Projects Current Member Projects & Services Conservancy is currently home to thirty-three member projects. Current Member ArgoUML Projects Member Project Services ArgoUML is the leading open source UML modeling tool and includes support for all standard UML 1.4 diagrams. It runs on any Java platform and is available in ten languages. See the feature list for more Applying details. Bongo The Bongo Project is creating fun and simple mail, calendaring and contacts software: on top of a standards-based server stack; we're innovating fresh and interesting web user interfaces for managing personal communications. Bongo is providing an entirely free software solution which is less concerned with the corporate mail scenario and much more focused on how people want to organize their lives. Boost Boost provides free peer-reviewed portable C++ source libraries. Boost emphasizes libraries that work well with the C++ Standard Library. Boost libraries are intended to be widely useful, and usable across a broad spectrum of applications. The Boost license encourages both commercial and non-commercial use. Boost aims to establish “existing practice” and provide reference implementations so that Boost libraries are suitable for eventual standardization. Ten Boost libraries are already included in the C++ Standards Committee's Library Technical Report (TR1) as a step toward becoming part of a future C++ Standard. More Boost libraries are proposed for the upcoming TR2. Buildbot Buildbot is a freely-licensed framework which enables software developers to automate software build, test, and release processes for their software projects.
    [Show full text]
  • Titre Sur 2-3 Lignes
    Rétrospective JDEV2015@Bordeaux rdatadev 13 oct 2015 * T1 Systèmes embarqués, réseaux de capteurs et objets communicants * T2 Modélisation et ingénierie * T3 Données massives scientifiques (Big data), recherche par les données * T4 Transfert marchand et non marchand * T5 Infrastructures et interopérabilité: Le cloud et les architectures orientées service (SOA) * T6 Les usines logicielles, le DevOps et la virtualisation * T7 Javascript (paradigmes et éco-systèmes) * T8 Logiciels scientifiques et simulations: nouveaux modèles et enjeux 1 DevOps kesako ? DevelopmentOperations Ma perception : au centre de tout ce qui est nécessaire pour mettre un service ou un outil à disposition. Wikipedia : « Devops est un mouvement visant à l'alignement de l'ensemble des équipes du système Mon souvenir des jdevs: d'information à commencer par les "devs" (chargés Un moyen de convergence entre les de faire évoluer le système d'information) et les "ops" ASR/Dev : (chargés d'exploiter les applications existantes). - les outils de gestion de source (utiles pour stocker les configuration) Ce que l'on pourrait résumer en travailler ensemble pour produire de la valeur pour l'entreprise. Dans la ( … et peut-être des outils d'automatisation ? ) majorité des entreprises, la valeur sera économique mais pour d'autres elle sera sociale ou morale. » T6.GT03 2 Usine logicielle – kesako ? Chaîne de production où les tâches répétitives seront automatisées comme le lancement régulier de la compilation, des tests unitaires, du déploiement. Une usine logicielle a pour objectif de fournir un support de travail collectif et aider à rendre la solution plus robuste (qualité). → Pour les fainéants ou ceux qui ont plusieurs milliers / millions de Lignes de code (LOC) ( « Nécessité » pour maintenir et faire face à la survie du prototype.
    [Show full text]
  • Case M.8994 - MICROSOFT / GITHUB
    EUROPEAN COMMISSION DG Competition Case M.8994 - MICROSOFT / GITHUB Only the English text is available and authentic. REGULATION (EC) No 139/2004 MERGER PROCEDURE Article 6(1)(b) NON-OPPOSITION Date: 19/10/2018 In electronic form on the EUR-Lex website under document number 32018M8994 EUROPEAN COMMISSION Brussels, 19.10.2018 C(2018) 7020 final In the published version of this decision, some information has been omitted pursuant to Article 17(2) of Council Regulation (EC) No 139/2004 concerning non-disclosure of business PUBLIC VERSION secrets and other confidential information. The omissions are shown thus […]. Where possible the information omitted has been replaced by ranges of figures or a general description. To the notifying party: Subject: Case M.8994 - Microsoft / GitHub Commission decision pursuant to Article 6(1)(b) of Council Regulation No 139/20041 and Article 57 of the Agreement on the European Economic Area2 Dear Sir or Madam, (2) On 14 September 2018, the European Commission ("Commission") received a notification of a proposed concentration pursuant to Article 4 of Council Regulation (EC) No 139/20043 by which Microsoft Corporation ("Microsoft" or the "Notifying Party", USA) acquires within the meaning of Article 3(1)(b) of the Merger Regulation control of the whole of GitHub Inc ("GitHub", USA) (the "Transaction"). Microsoft and GitHub are hereafter collectively referred to as the "Parties". 1. THE PARTIES (3) Microsoft is active in the design, development and supply of computer software (including various software development and operations ("DevOps") tools), hardware devices and related services, cloud-based solutions, online advertising, recruiting and professional social network services.
    [Show full text]
  • Disable Automatic Pull Requests Rhodecode
    Disable Automatic Pull Requests Rhodecode Blasting Elliot still last: unprincely and unbagged Ephrem expire quite transparently but decontrolled her bombsight synecologically. stepwise.Paramorphic and ledgiest Edie still uncapping his assent never. Anticholinergic Pincus unplanned, his jampot explant baksheeshes If you start writing another interesting aspect of pull requests that history linear and creates the past two lists The automatically applied is automatic caching of your teams and allow an asterisk by users and attack vectors, git through any of. Problem with vsnprintf in libc. Normal users just have the ability to add recipes. Getting good sense and it, writing scripts between them once it faster and provides powerful blog prioritizes simplicity, and enjoy these projects starting out great team can disable automatic pull requests rhodecode. This dollar will most likely melt away provided the two projects have diverged significantly. Completion, the mug is displayed in fact feasible valid and creek is! Securely synchronize your files to any kind of storage. Readme there are required if true, under certain conditions would use in case than or disable automatic pull requests rhodecode enables many required sections to deprecated overlays. Translation management platform for teams. Trigger a bonus that is take on django app stores that supports disable git hook directives section. After having a game controller that let me move on which results in go, using jenkins job back in internet_explorer, located in sensitive. If the build fails for other various reasons you can rebuild. It looks easy for rhodecode enables teams provides shared files can disable automatic pull requests rhodecode enables your music collection.
    [Show full text]