Skip to content

holdex/holdex-venture-studio

Repository files navigation

Welcome to Holdex

Before you begin align yourself with contributing guidelines.

Developing

Once you've installed dependencies with npm install (or npm install or yarn), start a development server:

npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

Environment Options

Our localhost runs the stage environment by default. You can switch it to run the production environment as you test things out and then switch back to staging.

You can do this in the .env file by setting the value to true:

PUB_USE_PRODUCTION_API=true;

and use the

npm run clean-dev