Skip to content

Latest commit

 

History

History
116 lines (75 loc) · 3.77 KB

bare_metal.md

File metadata and controls

116 lines (75 loc) · 3.77 KB

Bare-metal setup

Get the most juice out of your machine by setting up the eWallet onto your base operating system.

Step 1: Set up the server

Before we begin, be sure to have the following applications installed and running on your machine.

  • PostgreSQL: PostgreSQL is used for storing most of the data for the eWallet and LocalLedger.
  • ImageMagick: ImageMagick is used for formatting images in the Admin Panel. Tested with version > 7.0.7-22.
  • Elixir: Elixir is used as the primary language for the server components of the eWallet.
  • Git: Git is used for downloading and synchronizing codebase with the remote code repository.
  • NodeJS Node.js is used for building front-end code for the Admin Panel.
  • Yarn Yarn is used for managing and install front-end dependencies for the Admin Panel.

If you are on MacOS, you may install the above dependencies via Homebrew.

Now that you have the applications installed, proceed with 1.1 through 1.5 to setup the server.

1.1 Get the code

Pull the eWallet code from our Git repository to a directory of your choice:

$ git clone https://github.com/omisego/ewallet && cd ./ewallet

1.2 Install code dependencies

Fetch the Elixir dependencies:

$ mix deps.get

Then, install the front-end dependencies:

$ (cd apps/frontend/assets/ && yarn install)

The parentheses above forces the commands to be executed in a subshell, and returns to the current working directory after the execution.

1.3 Configure environment variables

Many configurations have default values pre-defined. If your environment requires different values, run export ENV=value to set environment variables in the current session (or add them to whatever profile file you are using).

Environment variable Description
PORT The internal listening port for the application
Defaults to 4000
DATABASE_URL The URL where the eWallet database can be accessed.
Defaults to postgres://localhost/ewallet_dev
LOCAL_LEDGER_DATABASE_URL The URL where the LocalLedger database can be accessed.
Defaults to postgres://localhost/local_ledger_dev

Learn more about all the environment variables available at Environment Variables.

1.4 Migrate the databases

Run the following command to setup the databases:

$ mix do ecto.create, ecto.migrate

Also, you will need to setup the test database so tests can be run:

$ MIX_ENV=test mix do ecto.create, ecto.migrate

1.5 Run the tests

Run the tests to make sure that your setup is healthy:

$ mix test

Step 2: Seed the database

Some initial data is required to start the server. Either run the seed or the sample seed below:

# Option 2a: Run this command to set up the initial data
$ mix seed

# Option 2b: Run this command to set up the initial data and populate the database with more sample data
$ mix seed --sample

Step 3: Start the server

Start the server using the following command:

$ mix omg.server

You should see the following output:

[info] Setting up websockets dispatchers...
[info] Running UrlDispatcher.Plug with Cowboy http on port 4000

You can now access your eWallet server using the available APIs:

$ curl http://localhost:4000
{"status": true}

Next step

Read the Documentation to learn more and start using your eWallet!

Having trouble setting up the eWallet? Check the Setup Troubleshooting Guide.