# about-replatform **Repository Path**: mirrors_sourcegraph/about-replatform ## Basic Information - **Project Name**: about-replatform - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-06-16 - **Last Updated**: 2026-01-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # "About" Replatform Initiative       ⚠️ ### This repo is no longer maintained and was used as an interim repo to replatform our marketing site onto Next.js. The repo now continues to live on at [github.com/sourcegraph/about](https://github.com/sourcegraph/about) ⚠️       --- This is Sourcegraph's Marketing Site which is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). --- ## Getting Started ### Node.js First, make sure that you have Node.js installed. You can use [`nvm`](https://github.com/nvm-sh/nvm) to automatically use the version of Node.js which is specified in the repository's [`.nvmrc`](./.nvmrc) file: ```sh nvm install ``` Alternatively, you can use [`n`](https://www.npmjs.com/package/n) to manage your Node versions. Use the following command to install the version of Node specified in the `.nvmrc` file: ```sh n ``` ### Install Dependencies From the top level of the project, run the following command to install dependencies: ```sh yarn ci ``` This will install the dependencies while ensuring the lock file remains unmodified. ### Running the Application To run the application, type the following command from the top level of the project: ```sh yarn dev ``` Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. ### Configure the `pre-commit` Githook To enable our pre-commit hook, update the following git config setting in the project: ```sh git config core.hooksPath .githooks ```