-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
20 lines (19 loc) · 941 Bytes
/
Copy path.env.example
File metadata and controls
20 lines (19 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Example environment variables for the Curator app
# Copy this file to `.env` (or `.env.development`, `.env.production`) and adjust as needed.
# Popular relays shown in the RelaySelector component.
# Must be valid JSON, an array of objects with `name` and `url` fields.
# Example:
# [
# { "name": "Swarm Hivetalk", "url": "wss://swarm.hivetalk.org" },
# { "name": "Beeswax Hivetalk", "url": "wss://beeswax.hivetalk.org" },
# { "name": "Nostr.NET", "url": "wss://relay.nostr.net" },
# { "name": "Damus", "url": "wss://relay.damus.io" },
# { "name": "Primal", "url": "wss://relay.primal.net" }
# ]
VITE_POPULAR_RELAYS='[
{ "name": "Swarm Hivetalk", "url": "wss://swarm.hivetalk.org" },
{ "name": "Beeswax Hivetalk", "url": "wss://beeswax.hivetalk.org" },
{ "name": "Nostr.NET", "url": "wss://relay.nostr.net" },
{ "name": "Damus", "url": "wss://relay.damus.io" },
{ "name": "Primal", "url": "wss://relay.primal.net" }
]'