Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/archway-network/archway-docs
- Owner: archway-network
- License: other
- Created: 2021-08-10T16:31:26.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-02T18:05:48.000Z (about 1 month ago)
- Last Synced: 2024-12-02T18:50:33.433Z (about 1 month ago)
- Topics: archway, blockchain, cosmos-sdk, documentation, documentation-website
- Language: Vue
- Homepage: https://docs.archway.io
- Size: 64.4 MB
- Stars: 14
- Watchers: 11
- Forks: 56
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
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.