Skip to content

Warframe - Find the best value items for turning platinum into ducats

Notifications You must be signed in to change notification settings

rehret/ducat-market

Repository files navigation

Build Status Coverage Status

Ducat Market

Find the best value items for turning platinum into ducats in Warframe.

Getting Started

Prerequisites

NodeJS is required. It can be installed here.

This project uses yarn in place of npm. Follow these instructions to install yarn globally.

Warning: Windows users should not install yarn via NPM, instead use the downloadable MSI executable.

Once installed, yarn is used to install all dependencies.

yarn install

Local Development

This command will build the server-side with ts-node in watch mode. It will also build the client-side in watch mode with webpack.

yarn develop

Running

yarn build
yarn start

Testing

yarn test

Contributing

Make sure you have tslint installed globally. This project is linted before each build. All code contributions should have zero linting errors.

Also, install EditorConfig in your editor. This will help keep a consistent code style throughout the project.

This project makes use of GitHub Flow. As such, work should be done on a feature branch and a pull request opened against master once the work is complete. Feature branches should following the naming convention feature/<feature-name>.

Versioning

Version numbers will follow SemVer versioning:

Major.Minor.Patch

For example, this is a valid version number:

1.2.345

Any changes that affect the major, minor, or patch versioning should have a tag pushed to origin with the SemVer version (consisting of major, minor, and patch). For example, if the project was at version 0.1.0 and it was decided that it was ready for official release, the tag 1.0.0 would be pushed to origin at that commit.