Skip to content

qutheory/red-dashboard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation



vapor.red UI

The official Dashboard for vapor.red.

This repository contains all code used for the Frontend for vapor.red. All code here is developed using VueJS, and connects to the backend Vapor application through https.

Contribute

We are always happy to receive Pull Requests containing bug fixes or new features.

Here are listed some of the tools used in the dashboard

If you want to contribute to the Vapor Red dashboard, you can get it up and running locally, and test against your live account. To do this, start by adding environment variables, you need to setup the following:

VUE_APP_API_URL=api.vapor.red
VUE_APP_STRIPE_KEY=local

This will tell the app to connect to the live API.

After this, you can build and run the application. From the root of the application, run the following commands:

# install dependencies
npm install

# Run the application
npm run serve

# Run JS lint, to make sure it passes before push
npm run lint

This will start up the application in debug mode, with hot reload enabled.