Andromeda Documentation Release 1.0.0-Beta

Total Page:16

File Type:pdf, Size:1020Kb

Andromeda Documentation Release 1.0.0-Beta Andromeda Documentation Release 1.0.0-beta Mike Lloyd August 05, 2015 Contents 1 Contents 3 1.1 Quickstart................................................3 1.2 Commands................................................3 1.3 Andromeda Manifest Format......................................9 1.4 Local Manifest.............................................. 12 1.5 OpenStack Manifest........................................... 12 i ii Andromeda Documentation, Release 1.0.0-beta Andromeda is a Python-based repository management tool for the OpenStack repositories. This is a refactor of the repo project for Android, but with some differences. While it is mostly identical for most intents and purposes, there are some differences: • Works in Python 2.6-2.7, migration to Python 3.x will be complete soon. • More PEP 8 compliant. • It is configured for the OpenStack Gerrit instance, not Google’s. • Andromeda does not assume Gerrit user name is the first part of your email address...it must be set in the Git global configuration. • This is an actual package instead of running curl http://... > file. • Better documentation. Contents 1 Andromeda Documentation, Release 1.0.0-beta 2 Contents CHAPTER 1 Contents 1.1 Quickstart For the impatient or those that want to figure it out independently, here is the quick start variant with the OpenStack Sandbox repository: git config --global gitreview.username yourgerritusername andromeda init -u https://github.com/mynameismevin/andromeda-sandbox --config-name andromeda sync -j8 andromeda start test-branch-01 sandbox cd sandbox && touch "test-file-01" && echo "Andromeda is awesome!" > test-file-01 && git add . && git commit -m "Andromeda still rocks!" && cd .." andromeda upload 1.1.1 Quickstart Explained Here is a quick and dirty explanation of what just happened. 1. Your Gerrit user name was configured globally for OpenStack. 2. Andromeda was initialised in the current directory and verified your information. 3. Andromeda pulled the remote repositories locally with 8 threads. 4. Andromeda initialised a new branch, test-branch-01, in the sandbox repository. 5. Added a new file to the sandbox and committed it. 6. Created a review in the OpenStack Review board. For more information on specific commands, please read the rest of the documentation. If you’ve ever used repo by Android, then you’ll be fine, just replace repo with andromeda. 1.2 Commands Here is a list of the current commands that Andromeda supports: abandon, branch, branches, checkout, diff, download, grep, init, prune, rebase, smartsync, stage, start, status, sync, upload 3 Andromeda Documentation, Release 1.0.0-beta 1.2.1 Abandon andromeda abandon permanently abandons a development branch by deleting it (and all its history) from your local repository. It is equivalent to git branch -D <branchname>. 1.2.2 Branch/Branches Summarizes the currently available topic branches. Branch Display The branch display output by this command is organized into four columns of information; for example: *P nocolor | in repo repo2 | The first column contains a * if the branch is the currently checked out branch in any of the specified projects, or a blank if no project has the branch checked out. The second column contains either blank, p or P, depending upon the upload status of the branch: (blank): branch not yet published by andromeda upload P: all commits were published by andromeda upload p: only some commits were published by andromeda upload The third column contains the branch name. The fourth column (after the | separator) lists the projects that the branch appears in, or does not appear in. If no project list is shown, then the branch appears in all projects. 1.2.3 Checkout andromeda checkout checks out an existing branch that was previously created by ‘andromeda start’. The command is equivalent to: andromeda forall [<project>...] -c git checkout <branchname> 1.2.4 Diff andromeda diff shows the differences between the latest commit and your working tree. 1.2.5 Download andromeda download downloads a change from the OpenStack Review system and makes it available in your project’s local working directory. 4 Chapter 1. Contents Andromeda Documentation, Release 1.0.0-beta 1.2.6 Forall Executes the same shell command in each project. Output Formatting The -p option causes Andromeda to bind pipes to the command’s stdin, stdout and stderr streams, and pipe all output into a continuous stream that is displayed in a single pager session. Project headings are inserted before the output of each command is displayed. If the command produces no output in a project, no heading is displayed. The formatting convention used by -p is very suitable for some types of searching, e.g. andromeda forall -p -c git log -SFoo will print all commits that add or remove references to Foo. The -v option causes Andromeda to display stderr messages if a command produces output only on stderr. Normally the -p option causes command output to be suppressed until the command produces at least one byte of output on stdout. Environment The pwd variable is the project’s working directory. If the current client is a mirror client, then pwd is the Git repository. ANDROMEDA_PROJECT is set to the unique name of the project. ANDROMEDA_PATH is the path relative the the root of the client. ANDROMEDA_REMOTE is the name of the remote system from the manifest. ANDROMEDA_LREV is the name of the revision from the manifest, translated to a local tracking branch. If you need to pass the manifest revision to a locally executed git command, use ANDROMEDA_LREV. ANDROMEDA_RREV is the name of the revision from the manifest, exactly as written in the manifest. Shell positional arguments ($1 $2 .. $#) are set to any arguments following <command>. Unless -p is used, stdin, stdout, stderr are inherited from the terminal and are not redirected. 1.2.7 Grep Search for the specified patterns in all project files. Boolean Options The following options can appear as often as necessary to express the pattern to locate: -e PATTERN --and, --or, --not, -(, -) Further, the -r/--revision option may be specified multiple times in order to scan multiple trees. If the same file matches in more than one tree, only the first result is reported, prefixed by the revision name it was found under. Examples Look for a line that has ’#define’ and either ’MAX_PATH or ’PATH_MAX’: 1.2. Commands 5 Andromeda Documentation, Release 1.0.0-beta andromeda grep -e '#define' --and -\\( -e MAX_PATH -e PATH_MAX \\) Look for a line that has ’NODE’ or ’Unexpected’ in files that contain a line that matches both expressions: andromeda grep --all-match -e NODE -e Unexpected 1.2.8 Init Initialize andromeda in the current directory. The andromeda init command is run once to install and initialize andromeda. The latest andromeda source code and manifest collection is downloaded from the server and is installed in the .andromeda/ directory. The optional -b argument can be used to select the manifest branch to checkout and use. If no branch is specified, master is assumed. The optional -m argument can be used to specify an alternate manifest to be used. If no manifest is specified, the manifest default.xml will be used. The --reference option can be used to point to a directory that has the content of a --mirror sync. This will make the working directory use as much data as possible from the local reference directory when fetching from the server. This will make the sync go a lot faster by reducing data traffic on the network. Switching Manifest Branches To switch to another manifest branch, andromeda init -b otherbranch may be used in an existing client. However, as this only updates the manifest, a subsequent andromeda sync (or andromeda sync -d) is nec- essary to update the working directory files. 1.2.9 Prune Prune (delete) already merged topics. 1.2.10 Rebase Rebase local branches on upstream branch. andromeda rebase uses git rebase to move local changes in the current topic branch to the HEAD of the up- stream history, useful when you have made commits in a topic branch but need to incorporate new upstream changes “underneath” them. 1.2.11 Smartsync andromeda smartsync is a shortcut for sync -s. 1.2.12 Stage andromeda stage stages files to prepare the next commit. 6 Chapter 1. Contents Andromeda Documentation, Release 1.0.0-beta 1.2.13 Start Start a new branch for development. andromeda start begins a new branch of development, starting from the revision specified in the manifest. 1.2.14 Status Show the working tree status. andromeda status compares the working tree to the staging area (aka the index), and the most recent commit on this branch (HEAD), in each project specified. A summary is displayed, one line per file where there is a difference between these three states. The -j/--jobs option can be used to run multiple status queries in parallel. The -o/--orphans option can be used to show objects that are in the working directory, but not associated with an andromeda project. This includes unmanaged top-level files and directories, but also includes deepe items. For example, if dir/subdir/proj1 and dir/subdir/proj2 are andromeda projects, dir/subdir/proj3 will be shown if it is not known to andromeda. 1.2.15 Status Display The status display is organized into three columns of information, for example if the file ‘subcmds/status.py’ is modi- fied in the project ‘devstack’ on branch ‘devwork’: project devstack/ branch devwork -m subcmds/status.py The first column explains how the staging area (index) differs from the last commit (HEAD). Its values are always displayed in upper case and have the following meanings: -: no difference A: added (not in HEAD, in index ) M: modified ( in HEAD, in index, different content ) D: deleted ( in HEAD, not in index ) R: renamed (not in HEAD, in index, path changed ) C: copied (not in HEAD, in index, copied from another) T: mode changed ( in HEAD, in index, same content ) U: unmerged; conflict resolution required The second column explains how the working directory differs from the index.
Recommended publications
  • How Bad Can It Git? Characterizing Secret Leakage in Public Github Repositories
    How Bad Can It Git? Characterizing Secret Leakage in Public GitHub Repositories Michael Meli Matthew R. McNiece Bradley Reaves North Carolina State University North Carolina State University North Carolina State University [email protected] Cisco Systems, Inc. [email protected] [email protected] Abstract—GitHub and similar platforms have made public leaked in this way have been exploited before [4], [8], [21], [25], collaborative development of software commonplace. However, a [41], [46]. While this problem is known, it remains unknown to problem arises when this public code must manage authentication what extent secrets are leaked and how attackers can efficiently secrets, such as API keys or cryptographic secrets. These secrets and effectively extract these secrets. must be kept private for security, yet common development practices like adding these secrets to code make accidental leakage In this paper, we present the first comprehensive, longi- frequent. In this paper, we present the first large-scale and tudinal analysis of secret leakage on GitHub. We build and longitudinal analysis of secret leakage on GitHub. We examine evaluate two different approaches for mining secrets: one is able billions of files collected using two complementary approaches: a to discover 99% of newly committed files containing secrets in nearly six-month scan of real-time public GitHub commits and a public snapshot covering 13% of open-source repositories. We real time, while the other leverages a large snapshot covering focus on private key files and 11 high-impact platforms with 13% of all public repositories, some dating to GitHub’s creation. distinctive API key formats. This focus allows us to develop We examine millions of repositories and billions of files to conservative detection techniques that we manually and automat- recover hundreds of thousands of secrets targeting 11 different ically evaluate to ensure accurate results.
    [Show full text]
  • Github Pull Request Review
    Github Pull Request Review Archaic and delegable Pierre prenotifying her longboat reactivating while Hartley reflow some intercross fadelessly. Narratable and thickhydropathic when Pincus Francois emerged reintegrate his timing. her bedchambers filigree or deactivate tamely. Unlearned and chiromantic Bearnard never outmeasuring There is merged soon, optimize this can request review status becomes quite clear based on their code management repositories that we would react to uninstall the pros and By dzone contributors, required for projects have fixed by everyone who can. In this palace, the toolbar will show why green Checks donut, a grey Changes revision, and grey zero counters in the remaining boxes. For this page with each other process, critical security expert from empirical and. Do at production data obtained from visual studio code review so that you if you want you selected, you a pull request that bad practice. Github will see? In github pull request review your first was this. Program readability: procedures versus comments. If any change on changes in progress and effective code coverage changes in that all pull request? Stripe is not have made for other reviewers are. Haacked is a blog about Technology, Software, Management, and fast Source. Even if there is in github or bandwidth costs go read way you can be detected by submitting are changes into new posts in github pull request review time for agility, requiring signed out. Rbac rules and code and more hunting down a nice aspect of incoming pr will update it more merge methods to! Review apps will spend some changes might require a pull reminders for.
    [Show full text]
  • Veni, Vidi, Vici
    Code Review: Veni, ViDI, Vici Yuriy Tymchuk, Andrea Mocci, Michele Lanza REVEAL @ Faculty of Informatics - University of Lugano, Switzerland Abstract—Modern software development sees code review as For example many of them leverage static code analysis a crucial part of the process, because not only does it facilitate techniques, like the ones provided by FindBugs [5], to spot the sharing of knowledge about the system at hand, but it may implementation problems. However, the results from such also lead to the early detection of defects, ultimately improving techniques are poorly integrated in a code review process, as the quality of the produced software. Although supported by we will see later. numerous approaches and tools, code review is still in its infancy, and indeed researchers have pointed out a number of We propose an approach to augment code review by inte- shortcomings in the state of the art. grating software quality evaluation, and more general design We present a critical analysis of the state of the art of code assessment, not only as a first class citizen, but as the core review tools and techniques, extracting a set of desired features concern of code review. Our approach, called Visual Design that code review tools should possess. We then present our vision Inspection (ViDI), uses visualization techniques to drive the and initial implementation of a novel code review approach quality assessment of the reviewed system, exploiting data named Visual Design Inspection (ViDI), illustrated through a set obtained through static code analysis. ViDI enables intuitive of usage scenarios. ViDI is based on a combination of visualization and easy defect fixing, personalized annotations, and review techniques, design heuristics, and static code analysis techniques.
    [Show full text]
  • How to Trust Auto-Generated Code Patches? a Developer Survey And
    How to trust auto-generated code patches? A developer survey and empirical assessment of existing program repair tools Yannic Noller∗ Ridwan Shariffdeen∗ National University of Singapore National University of Singapore Singapore Singapore [email protected] [email protected] Xiang Gao Abhik Roychoudhury National University of Singapore National University of Singapore Singapore Singapore [email protected] [email protected] ABSTRACT works on generating multi-line fixes [12, 29], or on transplanting Automated program repair is an emerging technology that seeks patches from one version to another [37] — to cover various use to automatically rectify bugs and vulnerabilities using learning, cases or scenarios of program repair. search, and semantic analysis. Trust in automatically generated Surprisingly, there is very little literature or systematic study patches is necessary for achieving greater adoption of program from either academia or industry — on the developer trust in pro- repair. Towards this goal, we survey more than 100 software practi- gram repair. In particular, what changes do we need to bring into tioners to understand the artifacts and setups needed to enhance the program repair process so that it becomes viable to have conver- trust in automatically generated patches. Based on the feedback sations on its wide-scale adoption? Part of the gulf in terms of lack from the survey on developer preferences, we quantitatively evalu- of trust comes from a lack of specifications — since the intended ate existing test-suite based program repair tools. We find that they behavior of the program is not formally documented, it is hard to cannot produce high-quality patches within a top-10 ranking and trust that the automatically generated patches meet this intended an acceptable time period of 1 hour.
    [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]
  • Bitbucket Require Pull Request Reviews Before Merging
    Bitbucket Require Pull Request Reviews Before Merging Hercule often warehouses misguidedly when childbearing Hunter spin inexactly and alkalinise her sprays. Reinhold is guerilla and spin-drying swiftly as enow Claire imbibing inconvertibly and pictured vanward. Handwrought and bonzer Merrick delays her casemates underlapping while Reilly opaquing some cozener ever. Like overall purpose, especially if the status will use travis ci server running the lingo and require reviews are familiar Okay, so we want to do various reviews of the changes. Bloomberg and jira projects, and the code extension is used as a look at least allow the main address. Connect multiple Jira instances and any other trackers at the flip of a switch. The Bitbucket Deployments extension allows you to deploy rules, rule configs, hooks, connections, database connection scripts, clients, client grants, resource servers, Universal Login pages. If there are problems with my fix, they will be noticed quickly. This message is twice removed from the actual source code, and will only persist as long as you keep using the same host. Apply the easiest way of new pull request view pull requests grouped by your data. Now i want to pull every time using python by different user, for that they need to enter every time username and password. It is most efficient to comment on the line of code in question with the SQL queries so they can give their advice. Better Commit Policy for Bitbucket integrates the Better Commit Policy for Jira app to Bitbucket repositories with a fully native experience. Good ui action items that describe the essential part of projects may be quite frequently done your side tools integrate it attractive to merging pull request bitbucket reviews before.
    [Show full text]
  • Software Build and Release Management for a Wireless Product with Open Source Tools
    Jukka Kokko SOFTWARE BUILD AND RELEASE MANAGEMENT FOR A WIRELESS PRODUCT WITH OPEN SOURCE TOOLS SOFTWARE BUILD AND RELEASE MANAGEMENT FOR A WIRELESS PRODUCT WITH OPEN SOURCE TOOLS Jukka Kokko Master’s thesis Autumn 2013 Degree Programme in Information Technology Oulu University of Applied Sciences ABSTRACT Oulu University of Applied Sciences Degree Programme in Information Technology Author: Jukka Kokko Title of thesis: Software Build and Release Management for a Wireless Product with Open Source Tools Supervisor: Markku Rahikainen Term and year when the thesis was submitted: Autumn 2013 Number of pages: 43 The object of this research was to test and select the best open source tools and processes for a project working with a complex wireless device, from a build and release management point of view. Some of the investigations were started on 2005; most of the work has been done during the year 2013 for Elektrobit Wireless Oy. The work consisted of studying and testing out multiple different open source tools used on build and release management process. The studied tools were Git, SVN and Mercurial as software configuration management systems, Bitbake, Yocto, Apache ANT and Apache Maven as build frameworks, Gerrit and Review Board as code review systems and CruiseControl and Jenkins as build automation systems. Also hardware selection, test automation, error and feature management related tools, delivery methods and effects of the project’s development model were considered. The result was a bit mixed as the best combination of tools depends on the project, but for example a project that uses agile methods and does software for a wireless embedded Linux device should use Git as a software configuration management system, Yocto as a build framework, Gerrit as a code review system and Jenkins as a build automation system.
    [Show full text]
  • Reviewboard Image Guide Reviewboard Stack Components
    ReviewBoard Image Guide Version 2.5.15 Websoft9 ReviewBoard is a pre-configured, ready to run image for running ReviewBoard on Alibaba Cloud. Review Board is an open source, web-based code and document review tool built to help companies, open source projects, and other organizations keep their quality high and their bug count low.Today, it’s a vital part of the development process at thousands of projects and companies, ranging from small startups of two people to enterprises of thousands.Review Board tracks changes to your pending code, graphics, documents, and all discussions around all the decisions made about your product. It shows you exactly how your code was changed, with syntax highlighting, interdiffs, moved line detection, indentation change indicators, and more.You can integrate with Review Board using its rich API and extension frameworks, allowing custom features, review UIs, data analysis, and more to be built without ever having to fork Review Board.There’s support for Bazaar, ClearCase, CVS, Git, Mercurial, Perforce, Plastic, and Team Foundation Server, hosted on your own server or on Assembla, Beanstalk, Bitbucket, Codebase, GitHub, GitLab, Gitorious, Kiln, or Unfuddle. ReviewBoard Stack Components Application Software(ReviewBoard2.5.15) ReviewBoard application directory: /data/wwwroot/reviewboard ReviewBoard configuration file: /data/wwwroot/reviewboard/conf/settings_local.py Application Server(Python 2.7.12,Django 1.6.11,apache2.4,memcached 1.4.25) Apache2 ReviewBoard Configuration: /etc/apache2/sites- available/reviewboard.conf
    [Show full text]
  • Git Pull Request Command Line
    Git Pull Request Command Line Clarence remains cytoid after Ely circularise unfeignedly or relearns any acclimatisers. Basil remains amygdalaceous: she histriumph Wavell her gruntingly. systematism interdigitated too blamefully? Clarance is ideologically legged after cabbalistical Jonathon instate How often be closed when a feature git pull request there are much better for contributing to know if you will make a lot with conflicts Green button at a maintainer will instruct git which you are using the history later. Why you move on as fork, you will be on github public repositories require your branch so you hover over a pull request as contribution. This makes git checkout and reply by someone else and their version control server at which survive history rewriting in random areas where. Vocabulary i have reviewed and can parse raw pcap files and effective way. Use git server set of this authentication process, i should describe alternative tools like review unit specify a git? You attach a successful build validation through five main repository? Close it would not allow users, we set up this, but it creates new branches. Looks plain text editor, which ensures each branch using a line. You have a pull request is a repository url of work in mind that it, leave comments for that remote repository. Examples include code and lines in line only present when you know how hackers are other files and forked repo that pull command. Any of their official repository like issues as draft pull? Merge command line? Comments on lines that. This article is also fork. Git on a line git pull request to commit that.
    [Show full text]
  • Fv3gfs-Wrapper: a Python Wrapper of the FV3GFS Atmospheric Model Jeremy Mcgibbon1, Noah D
    fv3gfs-wrapper: a Python wrapper of the FV3GFS atmospheric model Jeremy McGibbon1, Noah D. Brenowitz1, Mark Cheeseman1, Spencer K. Clark1,2, Johann Dahm1, Eddie Davis1, Oliver D. Elbert1,2, Rhea C. George1, Lucas M. Harris2, Brian Henn1, Anna Kwa1, W. Andre Perkins1, Oliver Watt-Meyer1, Tobias Wicky1, Christopher S. Bretherton1,3, and Oliver Fuhrer1 1Vulcan Inc., Seattle, WA 2Geophysical Fluid Dynamics Laboratory, NOAA, Princeton, NJ 3Department of Atmospheric Sciences, University of Washington, Seattle, WA Correspondence: Jeremy McGibbon ([email protected]) Abstract. Simulation software in geophysics is traditionally written in Fortran or C++ due to the stringent performance re- quirements these codes have to satisfy. As a result, researchers who use high-productivity languages for exploratory work often find these codes hard to understand, hard to modify, and hard to integrate with their analysis tools. fv3gfs-wrapper is an open-source Python-wrapped version of the NOAA (National Oceanic and Atmospheric Administration) FV3GFS (Finite- 5 Volume Cubed Sphere Global Forecasting System) global atmospheric model, which is coded in Fortran. The wrapper provides simple interfaces to progress the Fortran main loop and get or set variables used by the Fortran model. These interfaces enable a wide range of use cases such as modifying the behavior of the model, introducing online analysis code, or saving model variables and reading forcings directly to and from cloud storage. Model performance is identical to the fully-compiled Fortran model, unless routines to copy state in and out of the model are used. This copy overhead is well within an acceptable range of 10 performance, and could be avoided with modifications to the Fortran source code.
    [Show full text]
  • Github-Reviewboard-Sync's Documentation!
    githubreviewboardsyncDocumentation Release 0.1.0 Apptimize - Tim Martin June 03, 2016 Contents 1 Installation 3 2 Usage 5 3 Contributing 7 3.1 Types of Contributions..........................................7 3.2 Get Started!................................................8 3.3 Pull Request Guidelines.........................................8 3.4 Tips....................................................9 4 Credits 11 4.1 Development Lead............................................ 11 4.2 Contributors............................................... 11 5 History 13 5.1 0.1.5 (2016-06-03)............................................ 13 5.2 0.1.4 (2016-05-09)............................................ 13 5.3 0.1.3 (2016-05-06)............................................ 13 5.4 0.1.2 (2016-05-05)............................................ 13 6 github-reviewboard-sync 15 6.1 Overview................................................. 15 6.2 Installation................................................ 15 6.3 Features.................................................. 15 6.4 Credits.................................................. 16 7 Indices and tables 17 i ii githubreviewboardsyncDocumentation; Release0:1:0 Contents: Contents 1 githubreviewboardsyncDocumentation; Release0:1:0 2 Contents CHAPTER 1 Installation At the command line: $ easy_install github-reviewboard-sync Or, if you have virtualenvwrapper installed: $ mkvirtualenv github-reviewboard-sync $ pip install github-reviewboard-sync 3 githubreviewboardsyncDocumentation; Release0:1:0 4 Chapter
    [Show full text]
  • Fedora Infrastructure Best Practices Documentation Release 1.0.0
    Fedora Infrastructure Best Practices Documentation Release 1.0.0 The Fedora Infrastructure Team Sep 09, 2021 Full Table of Contents: 1 Getting Started 3 1.1 Create a Fedora Account.........................................3 1.2 Subscribe to the Mailing List......................................3 1.3 Join IRC.................................................3 1.4 Next Steps................................................4 2 Full Table of Contents 5 2.1 Developer Guide.............................................5 2.2 System Administrator Guide....................................... 28 2.3 (Old) System Administrator Guides................................... 317 3 Indices and tables 335 i ii Fedora Infrastructure Best Practices Documentation, Release 1.0.0 This contains a development and system administration guide for the Fedora Infrastructure team. The development guide covers how to get started with application development as well as application best practices. You will also find several sample projects that serve as demonstrations of these best practices and as an excellent starting point for new projects. The system administration guide covers how to get involved in the system administration side of Fedora Infrastructure as well as the standard operating procedures (SOPs) we use. The source repository for this documentation is maintained here: https://pagure.io/infra-docs Full Table of Contents: 1 Fedora Infrastructure Best Practices Documentation, Release 1.0.0 2 Full Table of Contents: CHAPTER 1 Getting Started Fedora Infrastructure is full of projects that need help. In fact, there is so much work to do, it can be a little over- whelming. This document is intended to help you get ready to contribute to the Fedora Infrastructure. 1.1 Create a Fedora Account The first thing you should do is create a Fedora account.
    [Show full text]