Skip to content

Documentation and web application containing information and guides to help Archway developers and node operators level up their workflow

License

Notifications You must be signed in to change notification settings

archway-network/archway-docs

Repository files navigation

Nuxt 3 Minimal Starter

Look at the nuxt 3 documentation to learn more.

Setup

Make sure to install the dependencies:

# yarn
yarn install

# npm
npm install

# pnpm
pnpm install --shamefully-hoist

Development Server

Start the development server on http://localhost:3000

npm run dev

Using Docker

You can also spin up the development environment using Docker. First, you have to add the Meilisearch secrets to the .env file. You can use the example file for that:

cp .env.example .env

After adding the secrets to the file, simply use Docker Compose to start the server:

docker compose up

The website will be available on http://localhost:3000

Production

Build the application for production:

npm run build

Locally preview production build:

npm run preview

Checkout the deployment documentation for more information.