This is a Next.js project bootstrapped with create-next-app
.
The Explorer project is designed to showcase various features of Next.js, including server-side rendering, static site generation, and API routes. It provides a foundational structure for building scalable and high-performance web applications.
This project is done for SuperTeam olympics, and is a solana explorer.
To get started with the development environment, follow these steps:
Ensure you have the following installed:
- Node.js (>=14.x)
- npm (>=6.x) or yarn (>=1.x)
Clone the repository and install dependencies:
git clone https://github.com/ksorv/explorer.git
cd explorer
npm install
# or
yarn install
# or
pnpm install
npm run dev
# or
yarn dev
# or
pnpm dev
Open http://localhost:3000 in your browser to see the result. The page will automatically update as you make changes to the code.
You can add your custom rpc to the repo by using RPC_URL
env var
To build the project for production, use the following command:
npm run build
# or
yarn build
# or
pnpm build
This will create an optimized production build in the .next folder.
After building the project, you can start the production server with:
npm run start
# or
yarn start
# or
pnpm start
To run the linter, use:
npm run lint
# or
yarn lint
# or
pnpm lint
To learn more about Next.js, take a look at the vercel website.
The easiest way to deploy this Next.js app is to use the Vercel Platform
This project is licensed under the MIT License.