No description
Find a file
dominik-zeglen 7f8ea0f254 Update icons
2020-09-09 12:59:42 +02:00
.circleci Bump node version 2020-06-08 17:00:39 +02:00
.github Updated test dashboard deployment to allow dashes 2020-08-28 12:03:19 +02:00
.tx Use json files in translations 2020-02-13 12:54:23 +01:00
assets Update icons 2020-09-09 12:59:42 +02:00
cypress Add fix for a PR comment 2020-08-27 09:03:10 +02:00
lint/rules Add rule fixer 2019-12-03 16:23:42 +01:00
locale Restore zh locales 2020-09-04 16:11:56 +02:00
nginx fixing 404 2019-11-04 02:21:48 +07:00
recordings/User_3768991250 Do not match requests by url and headers 2020-07-29 15:10:39 +02:00
scripts Store in snapshot LOCs that errored 2020-02-26 13:57:04 +01:00
src Add menu skeleton 2020-09-09 12:59:41 +02:00
testUtils Add metadata (#670) 2020-08-28 14:45:11 +02:00
.codeclimate.yml Initial commit 2019-06-19 16:40:52 +02:00
.dockerignore add .dockerignore and fixing nginx conf for local deploy 2019-10-31 14:31:13 +07:00
.eslintrc.json Add circleci config and enhance our linters (#519) 2020-05-14 11:30:32 +02:00
.gitignore Add prettierrc config 2020-07-03 15:17:36 +02:00
.npmrc Initial commit 2019-06-19 16:40:52 +02:00
.prettierignore Do not format type files 2019-11-21 18:46:28 +01:00
.prettierrc Add prettierrc config 2020-07-03 15:17:36 +02:00
.travis.yml Update required node version 2019-11-07 14:29:38 +01:00
_redirects Enable Netlify redirects 2019-11-14 13:01:45 +01:00
apollo.config.js Update apollo config 2019-08-21 15:26:24 +02:00
app.json Configure Heroku integration 2019-09-22 14:30:10 +02:00
babel.config.js Explicitely return not found page 2020-02-20 15:18:22 +01:00
CHANGELOG.md Merge branch 'master' into feature/update-default-decimal-places 2020-09-09 11:33:54 +02:00
cypress.json Add no UI login 2020-08-25 16:15:39 +02:00
Dockerfile add Dockerfile + nginx 2019-10-31 13:37:38 +07:00
Dockerfile.dev Better env vars handling 2020-02-07 10:44:20 +01:00
eslint-local-rules.js Add local eslint rule to enforce naming styles 2019-12-03 16:09:57 +01:00
LICENSE Initial commit 2019-06-19 16:40:52 +02:00
lighthouserc.json Add circleci config and enhance our linters (#519) 2020-05-14 11:30:32 +02:00
package-lock.json Merge pull request #629 from mirumee/dependabot/npm_and_yarn/elliptic-6.5.3 2020-07-30 12:49:06 +02:00
package.json Add tests to auth 2020-07-27 12:23:42 +02:00
react-intl.d.ts Add filter tests 2020-01-20 16:46:56 +01:00
README.md Apply fixes from 2.10.1 2020-07-16 13:48:00 +02:00
schema.graphql update schema and types 2020-09-07 12:48:19 +02:00
static.json Configure Heroku integration 2019-09-22 14:30:10 +02:00
tsconfig.json Add test utils 2020-01-20 16:46:54 +01:00
tslint.json Include locales in app 2019-08-29 15:59:29 +02:00
webpack.config.js Add GTM 2020-05-26 01:47:12 +02:00
webpack.d.ts Initial commit 2019-06-19 16:40:52 +02:00

Saleor Dashboard

Saleor Dashboard

A GraphQL-powered, single-page dashboard application for Saleor.

Demo

See the public demo of Saleor Dashboard!

Or launch the demo on a free Heroku instance.

Deploy

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Prerequisites

  • Node.js 10.0+
  • A running instance of Saleor.

Installing

Clone the repository:

$ git clone https://github.com/mirumee/saleor-dashboard.git

Enter the project directory:

$ cd saleor-dashboard

Using stable release

To use the official stable release, checkout to a release tag:

$ git checkout 2.10.1

See the list of all releases here: https://github.com/mirumee/saleor-dashboard/releases/

Using development version

If you want to use the latest development version, checkout to the master branch:

$ git checkout master

Install NPM dependencies:

$ npm i

Configuration

There are two environment variables available for configuration:

  • API_URI (required) - URI of a running instance of Saleor GraphQL API. If you are running Saleor locally with the default settings, set API_URI to: http://localhost:8000/graphql/.

  • APP_MOUNT_URI - URI at which the Dashboard app will be mounted. E.g. if you set APP_MOUNT_URI to /dashboard/, your app will be mounted at http://localhost:9000/dashboard/.

  • STATIC_URL - URL where the static files are located. E.g. if you use S3 bucket, you should set it to the bucket's URL. By default Saleor assumes you serve static files from the root of your site at http://localhost:9000/.

Development

To start the development server run:

$ npm start

Production

To build the application bundle run:

$ npm run build

Crafted with ❤️ by Mirumee Software