Highly customizable Farcaster client, initially funded by a grant from Nouns DAO. Customize the look, sound, content, and functionality of your public profile space and personal feed/homebase with Themes, Tabs, and a growing library of mini-apps called Fidgets.
Forked from herocast in April 2024.
https://docs.nounspace.com/nounspace-alpha/
a protocol for decentralized social apps: https://www.farcaster.xyz
-
Clone the repo
git clone https://github.com/Nounspace/nounspace.ts.git cd nounspace.ts -
Install Supabase CLI On Mac OS, for example:
brew install supabase/tap/supabase
Install Docker Desktop on macOS:
brew install --cask docker open /Applications/Docker.app
Wait for Docker Desktop to finish initializing before continuing.
On Linux:
First, install Homebrew (if not already installed):
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"Follow the instructions in your terminal to add Homebrew to your PATH. Generally, you'll need to run these commands (replace
.bashrcwith your shell configuration file if different):(echo; echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"') >> ~/.bashrc eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
You may also need to install some dependencies first (Debian/Ubuntu):
sudo apt-get install build-essential procps curl file git
Then install Supabase:
brew install supabase/tap/supabase
Install Docker (Debian/Ubuntu):
sudo apt-get update sudo apt-get install -y docker.io docker-compose-plugin sudo systemctl enable --now docker sudo usermod -aG docker "$USER"
Log out/in (or restart your shell) so the new group membership takes effect. For other distros, follow the official Docker Engine docs.
Make sure Docker is installed and running before continuing.
-
Install dependencies
yarn install
-
Create a file
.env.development.local -
Get the environment variables you need for the file
a. get a Neynar API key https://docs.neynar.com/docs ->NEYNAR_API_KEY
b. get an Alchemy API key https://www.alchemy.com ->NEXT_PUBLIC_ALCHEMY_API_KEY
c. get an Etherscan API key https://docs.etherscan.io/getting-started/ -> 'ETHERSCAN_API_KEY'
d. get a CoinGecko API key https://www.coingecko.com/en/api -> 'COINGECKO_API_KEY'
e. get a Clanker API key https://github.com/clanker-devco/DOCS -> 'CLANKER_API_KEY' (dev portal coming soon; request a key from the nounspace or Clanker team for now)
f. get a Youtube API key https://developers.google.com/youtube/v3 -> 'YOUTUBE_API_KEY'
g. get your Farcaster account FID and mnemonic ->NEXT_PUBLIC_APP_FID+APP_MNEMONIC
h. launch local copy of Supabase withsupabase start(in the root directory of this repo), use the info provided ->
API URL:NEXT_PUBLIC_SUPABASE_URL+anon key:NEXT_PUBLIC_SUPABASE_ANON_KEY -
Run the setup script
./setup.shThe script will attempt to start Supabase automatically if Docker is running; otherwise it will skip this step.
-
Seed the local database After Supabase is running and migrations are applied, seed the database:
# Run migrations and seed SQL (if not already done) supabase db reset # Seed community configs and navPage spaces yarn seed
This will:
- Upload Nouns assets to ImgBB (if
NEXT_PUBLIC_IMGBB_API_KEYis set) - Create navPage space registrations
- Seed community configs (nouns, example, clanker)
- Upload navPage space configs to Supabase Storage
- Upload Nouns assets to ImgBB (if
-
Run the test suite
yarn test- cp .env.development.local .env.local
- yarn build
See the contributing docs for how to add to the code base. Register on Scout Game to earn points for contributions to repos in the nounspace org.
The Nounspace App follows the Atomic Design Pattern

src/pages holds the Page elements of the atomic design. These are separated from src/common due to how Next.js handles routing.
src/common/ui contains all of the display components for all other layers of the atomic design. src/common/ui/components are a mixture of Molecules and Organisms that were imported from herocast, they still need to be split into their appropriate folders (src/common/ui/molecules & src/common/ui/organisms).
src/common/data contains access to datastreams, in the form of database connections and API's
src/common/lib contains useful functions for accessing formatted data, along with helpers functions inside the utils directory.
src/styles contains information for managing website styling
src/constants contains all static information that is needed to run the app. This includes actual constants, along with some global types
This file structure is adapted from herocast, and not all files have been cleaned up properly. If you find files or data that are placed in the wrong location, please refactor them to correct file or folder. For example, there are some constants that are not placed in the src/constants directory, and instead are in the other files.
reminder: key is an edcsa key not a 'normal' EVM address
nounspace is released under the GPL-3.0 License. Feel free to fork and modify the project—just be sure any version you release uses the GPL-3.0 License too.
Made with ❤️ by the Nounspace team & community. Questions or feedback? Create a Github issue or contact us in Discord