Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Status Website

This is the repository for the https://status.app – a Next.js project.

Prerequisites

Getting Started

First, follow the root README to clone the repo, initialize submodules, and install dependencies.

Then, pull environment variables:

  git clone https://github.com/status-im/status-website.git
  git submodule update --init --recursive

Optionally, update submodules:

  git submodule update --remote [submodule]

Go to the project directory:

  cd status-website

Install dependencies:

  pnpm install

Pull environment variables:

  vercel env pull .env.local

Start the development server:

pnpm dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the pages or content. Pages auto-update as you edit the file.

Database (development)

Explore environment's database:

pnpm db:explore

Directly modify the database and its schema:

pnpm db:push

On conflict, drop your migrations and generate new ones:

rm -r ./migrations && git checkout <base> -- ./migrations && pnpm db:generate