A linktree/linkinbio alternative that is powered by Telegram. It is written in Next.js, PostgresSQL database from Supabase, UI made with TailwindCSS, ShadCN UI & Radix UI
gmon.link is a community-run project initially started by the team behind Monad Pad. If you have any suggestions, ideas, or want to help build and show your skills to the Monad ecosystem, please open an issue or a pull request 💜
View the Telegram bot's Github Repository here.
To setup the front-end of gmon.link locally to for example; help contribute to the platform or play around with it. You need to follow the following steps:
Head over to Supabase and create a new account/project, call this project gmonlink
.
Go to the Table Editor
section to create the following tables:
This table is used to store the analytics for each link. It contains the following columns:
now()
)This table is used to store the users that have created an account via the @gmonlinkbot on Telegram. It contains the following columns:
now()
)This table is used to store the projects that users have created. It contains the following columns:
users.id
)violet
)false
)now()
)This table is used to store the links that users have created. It contains the following columns:
projects.project_id
)now()
)This is not a table, but a bucket in the Storage
section of your Supabase project. You can find it by clicking Storage
in the sidebar.
Let's create a new bucket, call it gmon.link
and make it a public bucket.
Files uploaded in this bucket will be accessible by users to view the images inside it, the Project Slug
is the file name followed by the extension.
Example: monad-pad.png
for the Monad Pad project logo, also called avatar_url
in the projects table.
Now that you've setup the database, you can start setting up the front-end.
Let's start by forking the repository, click Fork
in the top right corner. A pop-up will appear, you can leave the default options there and just click Create fork
. After a few seconds, you should be redirected to your own copy of the repository.
Open the forked repository in your favourite IDE, we recommend using VSCode or Cursor.
To install the dependencies, run the following command:
npm install
Rename the .env.example
file to .env.local
.
You will see the following environment variables:
NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_ANON_KEY=
SUPABASE_SERVICE_KEY=
JWT_SECRET=
NEXT_PUBLIC_ENVIRONMENT=
GITHUB_TOKEN=
All these except the NEXT_PUBLIC_ENVIRONMENT
& GITHUB_TOKEN
can be found in the Project Settings
-> API
section of your Supabase project.
The NEXT_PUBLIC_ENVIRONMENT
is used to determine the environment of the application, you can set it to development
while locally developing, and production
when you want to deploy the application. In /lib/utils.ts
you can see exactly what this does.
You can leave the GITHUB_TOKEN
as it is, this is used to fetch contributors on the Made with ❤️ by
section of the landing page.
The production version of gmon.link is using a different schema than the local version, this is because the production version is hosted by Monad Pad and we are using a different Supabase project for it.
To change the schema to public (default), you need to set the useSchema
variable to false
in /lib/clients/supabase.ts
.
To run the application, run the following command:
npm run dev
You can now access the application at http://localhost:3000
.
This micro tool is made by Monad Pad - the leading launchpad on Monad.
This is not affiliated with Monad in any way.