Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/archway-network/archway-docs

Documentation and web application containing information and guides to help Archway developers and node operators level up their workflow
https://github.com/archway-network/archway-docs

archway blockchain cosmos-sdk documentation documentation-website

Last synced: 4 days ago
JSON representation

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

Awesome Lists containing this project

README

        

# Nuxt 3 Minimal Starter

Look at the [nuxt 3 documentation](https://v3.nuxtjs.org) to learn more.

## Setup

Make sure to install the dependencies:

```bash
# yarn
yarn install

# npm
npm install

# pnpm
pnpm install --shamefully-hoist
```

## Development Server

Start the development server on [http://localhost:3000](http://localhost:3000)

```bash
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:

```bash
cp .env.example .env
```

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

```bash
docker compose up
```

The website will be available on [http://localhost:3000](http://localhost:3000)

## Production

Build the application for production:

```bash
npm run build
```

Locally preview production build:

```bash
npm run preview
```

Checkout the [deployment documentation](https://v3.nuxtjs.org/guide/deploy/presets) for more information.