Giter Site home page Giter Site logo

medusa's Introduction

Medusa is a command line tool that works together with Satis to create a local git mirror for your composer projects.

What the hack???

What is Medusa, what is it good for?

If you have a very slow connection, fetching your project's dependencies through composer can be a pain. My projects were taking more than half a day to update or install on my local machines because of slow networks.

Medusa will create a mirror of all these things on your local machine and let you fetch everything from there rather than fetching the whole source from Github. Each dependency is entirely mirrored, meaning you'll have all versions, tags, and branches on your local machine.

Limitations

It will only work with github hosted projects for now.

It has very poor documentation

It is a very early release, there might be bugs, and the API to use it is definitely confusing.

How to use

For now, you can do the following:

  • Download the .phar archive from the downloads section

  • Download the .phar archive for SATIS

  • Put them both in a folder on your machine

  • Inside of that folder, create a web/ and a repositories/ folder

  • Create a medusa.json file that looks like this:

    { "require": [ "vendor/package", "othervendor/otherpackage", //... List all the packages you want here, there dependencies can be // auto downloaded as well ], "repodir":"repositories", "satisconfig":"satis.json" }

  • Create a satis config file skeleton like this:

    { "name": "My Repository", "homepage": "http://packages.example.org", "repositories": [ ], "require-all": true // if you want to also mirror the dependencies from each package }

  • run ./bin/medusa mirror medusa.json

  • wait a long time

During this time, medusa will first find all the dependencies you need. Then run git clone --mirror for each of them to create a mirror inside of the specified repodir. And finally update your satis.json file with your new config.

  • Run the satis build command: ./satis.phar build satis.json web/

  • Once a day run:

    ./bin/medusa.phar update /path/to/your/repositories/folder

    ./vendor/bin/satis build satis.json /path/to/your/web/

To update all repos and rebuild the satis config.

Other available commands:

add [--config-file] [--with-deps] package [repos-dir]

  • --config-file is the satis config file (so it can be updated)
  • --with-deps set to true or false to decide if you want to also mirror the new package's dependencies
  • package is the package name you want to mirror (eg: symfony/symfony)
  • repos-dir in our case would be repositories

Make composer use it

Point a webserver to the web/ directory.

In your composer global config file add:

{
    "repositories": [
        { "type": "composer", "url": "http://localsatis.url"}
    ]
}

medusa's People

Contributors

khepin avatar vtek21 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.