forked from hashlips-lab/safe-nft-metadata-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
52 lines (44 loc) · 1.88 KB
/
.env
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
# In all environments, the following files are loaded if they exist,
# the latter taking precedence over the former:
#
# * .env contains default values for the environment variables needed by the app
# * .env.local uncommitted file with local overrides
# * .env.$APP_ENV committed environment-specific defaults
# * .env.$APP_ENV.local uncommitted environment-specific overrides
#
# Real environment variables win over .env files.
#
# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES.
#
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
# General collection settings
COLLECTION_IS_REVEALED=true
COLLECTION_WEBSITE=https://www.example.com/
COLLECTION_MAX_SUPPLY=10000
COLLECTION_ASSETS_EXTENSION=jpg
COLLECTION_ASSETS_EXTENSION1=glb
COLLECTION_HIDDEN_ASSET_EXTENSION=jpg
METADATA_TEMPLATE=null
# Used for TotalSupplyProviers and HTTP headers (default: 10 minutes)
CACHE_EXPIRATION=600
# Local filesystem settings (LocalFilesystemDriver)
LOCAL_FS_DRIVER_COLLECTION_PATH=%kernel.project_dir%/collection
# AWS S3 filesystem settings (S3FilesystemDriver)
S3_FS_DRIVER_REGION=fra1
S3_FS_DRIVER_ENDPOINT_URL=https://fra1.digitaloceanspaces.com
S3_FS_DRIVER_ACCESS_KEY=YOUR_ACCESS_KEY
S3_FS_DRIVER_SECRET_KEY=YOUR_SECRET_KEY
S3_FS_DRIVER_BUCKET_NAME=my-bucket
S3_FS_DRIVER_OBJECTS_KEY_PREFIX=
# Used by the EnvVarProvider
ENV_TOTAL_SUPPLY=8
# Used by the OpenSeaStatsProvider
OPEN_SEA_COLLECTION_SLUG=open-sea-collection-slug
# Used by the Web3Provider
WEB3_SMART_CONTRACT_ADDRESS=0xYOUR_CONTRACT_ADDRESS
WEB3_HTTP_ENDPOINT=https://mainnet.infura.io/v3/YOUR_PROJECT_ID_HERE
###> symfony/framework-bundle ###
APP_ENV=dev
APP_SECRET=9c9c07bc1db89953bb57c518d5a206f1
###< symfony/framework-bundle ###