-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.development
52 lines (45 loc) · 2.2 KB
/
.env.development
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# .env = all environments
# .env.development = development environment (yarn dev)
# .env.production = production environment (yarn start)
# .env.local = always overrides the above three
# ".env, .env.development, and .env.production should be included in
# your repository as they define defaults. .env*.local should be added
# to .gitignore, as those files are intended to be ignored. .env.local
# is where secrets can be stored."
# Source:
# https://nextjs.org/docs/pages/building-your-application/configuring/environment-variables#default-environment-variables
#
# Metadata
#
# Variables with the NEXT_PUBLIC prefix are shipped to production and
# therefore visible to the public internet. Priviate variables should
# not be prefixed with the NEXT_PUBLIC prefix.
# Source:
# https://youtu.be/sZfUXVSor-k?si=aFw9ysBVhbgpjv4U
NEXT_PUBLIC_URL="http://localhost:3000"
NEXT_PUBLIC_GITHUB="https://github.com/soobinrho/BeeMovr"
NEXT_PUBLIC_TITLE="BeeMovr"
NEXT_PUBLIC_DESCRIPTION="Nectar availability and honey yield prediction for beekeepers."
NEXT_PUBLIC_TITLE_AND_HEADER="BeeMovr: Helping beekeepers save their bees."
NEXT_PUBLIC_OPENGRAPH_IMAGE="https://opengraph.githubassets.com/c9f1f543399d25a8f005c2c5bae1faf8dd0bf0ca9e61939342f2a08edee705c7/soobinrho/BeeMovr"
#
# Mapbox
#
# This access token is meant to be public and is restricted to be
# accessible by only https://BeeMovr.nsustain.com
# What this means is that this API token won't work for you when you
# run a dev server. Instead, go to https://mapbox.com and get a new
# token and run `cp ./.env.development ./.env.local` and then paste
# your toen to `.env.local` file.
NEXT_PUBLIC_MAPBOX_API_TOKEN="pk.eyJ1Ijoic29vYmlucmhvIiwiYSI6ImNtMXdoenc3ajBsZnQyanBsOHN2ZWhodWoifQ.jkeJlxlzXGyf_KEF8hx4og"
#
# Isitwater API
#
# This is used for determining if a given coordinate is land or
# water. You can just leave this empty for testing purposes.
# The code will work fine by default with these as blank values.
# However, if you want to use this feature, get an API key from
# https://isitwater.com and paste the values to `.env.local` after
# running `cp ./.env.development ./.env.local`.
NEXT_PUBLIC_ISITWATER_API_HOST="https://isitwater-com.p.rapidapi.com"
ISITWATER_API_KEY=""