GithubHelp home page GithubHelp logo

johantell / hexpm Goto Github PK

View Code? Open in Web Editor NEW

This project forked from hexpm/hexpm

0.0 0.0 0.0 6.65 MB

API server and website for Hex

Home Page: https://hex.pm

Elixir 82.26% JavaScript 0.71% CSS 3.21% HTML 13.50% Erlang 0.32%

hexpm's Introduction

Hexpm

Build Status

Contributing

To contribute to Hexpm you need to properly set up your development environment.

Also see the client repository: hex. The client uses hexpm for integration tests, so hexpm needs to support all versions the client supports. Travis tests ensures that tests are run on all supported versions.

PostgreSQL Modules And Version

PostgreSQL version should be >= 9.4, as Hexpm uses the jsonb type, that is available from PostgreSQL 9.4 onward.

Hexpm requires the PostgreSQL modules pg_trgm and pgcrypto to be available.

This is located in the "postgresql-contrib" package, however the package name can vary depending on your operating system. If the module is not installed the ecto migrations will fail.

Database

By default, Hexpm connects to a localhost PostgreSQL database hexpm_dev using the username postgres with the password postgres.

Create the database and user 'postgres' if not already done:

CREATE USER postgres;
ALTER USER postgres PASSWORD 'postgres';
CREATE DATABASE hexpm_dev;
GRANT ALL PRIVILEGES ON DATABASE hexpm_dev TO postgres;
ALTER USER postgres WITH SUPERUSER;

-- if you also want to setup the test database
CREATE DATABASE hexpm_test;
GRANT ALL PRIVILEGES ON DATABASE hexpm_test TO postgres;
ALTER DATABASE hexpm_test SET timezone TO 'UTC';

Now you are fine to run the ecto migrations:

mix ecto.migrate

Sample Data

Using the following command you can seed your local Hexpm instance with some sample data:

mix run priv/repo/seeds.exs

Also, all of the steps above (creating, migrating, and seeding the database) can be achieved by running:

mix ecto.setup

Node Dependencies

All the Node dependencies can be installed with npm:

cd assets && npm install

These are needed for asset compilation.

Running Hexpm

Once the database is set up you can start Hexpm:

# with console
iex -S mix phx.server

# without console
mix phx.server

Hexpm will be available at http://localhost:4000/.

Running Tests

By default, tests use a PostgreSQL called hexpm_test see above for setup.

License

Copyright 2015 Eric Meadows-Jönsson

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

hexpm's People

Contributors

ericmj avatar wojtekmach avatar pragmaticivan avatar fteem avatar jaimeiniesta avatar tsloughter avatar leaexplores avatar henrik avatar josevalim avatar ciaran avatar benwilson512 avatar taktes avatar tuxified avatar milmazz avatar mkaszubowski avatar gfvcastro avatar bjfish avatar msoedov avatar michalmuskala avatar alco avatar parkerl avatar mneudert avatar qqwy avatar jbranchaud avatar falood avatar eksperimental avatar scrogson avatar techgaun avatar riacataquian avatar h4cc 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.