Skip to content
This repository has been archived by the owner on Mar 30, 2021. It is now read-only.

Latest commit

 

History

History
38 lines (28 loc) · 1.06 KB

DEV_ENVIRONMENT.md

File metadata and controls

38 lines (28 loc) · 1.06 KB

How to configure your system for developing meiling

Install Rust

Windows®

Follow this direction.

macOS and Linux

  1. Install gcc on your platform
  2. Install rust and cargo using rustup
    rustup can be installed from here

Optional Rust Configuration

  1. You can install sccache for improved performance during builds.

MariaDB Server Configuration

Windows®

Download MySQL for Windows.
It will set it up for you.

macOS

Install mariadb using brew install mariadb and start server using mysql.server start.

Linux

Install mariadb using your system's package manager, DON'T FORGET TO INSTALL libmariadb.

Configure sccache

Install sccache by direction available here.

How to Run/Build

How to Run

Run cargo run.

How to Build

Release version

Run cargo build --release.

Debug version

Run cargo build.