Giter Club home page Giter Club logo

crates.io's Introduction

crates.io

Source code for the default registry for Cargo users. Can be found online at crates.io

Installation

  • git clone this repository
  • npm install

Making UI tweaks or changes

This website is built using Ember.js for the frontend, which enables tweaking the UI of the site without actually having the server running locally. To get up and running with just the UI, run:

npm run startui

This will give you a local server to browse while using the staging backend (hosted on heroku at https://staging-crates-io.herokuapp.com).

If you'd like to run the server with a specific different backend, you can specify specific arguments to npm start. For example you can set the proxy to https://crates.io/ to use the live instance, but do be aware that any modifications made here will be permanent! To do this, run:

npm start -- --proxy https://crates.io

This requires NPM 2.0.

Working on the backend

If you'd like to change the API server (the Rust backend), then the setup is a little more complicated.

  1. Define some environment variables:

    # Credentials for uploading packages to S3, these can be blank if you're not
    # publishing locally.
    export S3_BUCKET=...
    export S3_ACCESS_KEY=...
    export S3_SECRET_KEY=...
    export S3_REGION=...      # not needed if the S3 bucket is in US standard
    
    # Credentials for talking to github, can be blank if you're not logging in.
    #
    # When registering a new application, be sure to set the callback url to the
    # address `http://localhost:4200/authorize/github`.
    export GH_CLIENT_ID=...
    export GH_CLIENT_SECRET=...
    
    # Key to sign and encrypt cookies with
    export SESSION_KEY=...
    
    # Location of the *postgres* database
    #
    # e.g. postgres://postgres:@localhost/cargo_registry
    export DATABASE_URL=...
    
    # Remote and local locations of the registry index
    export GIT_REPO_URL=file://`pwd`/tmp/index-bare
    export GIT_REPO_CHECKOUT=`pwd`/tmp/index-co
    
  2. Set up the git index

    ./script/init-local-index.sh
    
  3. Build the server

    cargo build
    
  4. Run the migrations

    ./target/migrate
    
  5. Run the servers

    # In one window, run the api server
    ./target/server
    
    # In another window run the ember-cli server
    ember server --proxy http://localhost:8888/
    

Running Tests

  1. Configure the location of the test database. Note that this should just be a blank database, the test harness will ensure that migrations are run.

    export TEST_DATABASE_URL=...
    
  2. Run the API server tests

    cargo test
    
  3. Run frontend tests

    ember test
    ember test --server
    

Tools

For more information on using ember-cli, visit http://iamstef.net/ember-cli/.

For more information on using cargo, visit doc.crates.io.

crates.io's People

Contributors

alexcrichton avatar blakewilliams avatar brson avatar derkyjadex avatar huonw avatar jgillich avatar killercup avatar kornelski avatar markberger avatar mbrubeck avatar pimterry avatar ralph avatar seanpdoyle avatar sfackler avatar simnalamburt avatar simonsapin avatar stefanpenner avatar wycats avatar

Watchers

 avatar  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.