Deployment Guide
This guide provides detailed instructions for deploying an instance of the decentralized location logger application.
Initial Setup
1. Fork and Clone the Repository
- Click the "Fork" button in the upper right corner to create your own copy
- Clone your forked repository to your local machine:
- This creates a local copy of the codebase that you can modify and deploy
2. Build & Configure
-
Install dependencies:
This installs all required dependencies for the project.
-
In
/packages/nextjs/
, copy.env.example
to.env.local
: -
Configure the following required environment variables in your
.env.local
file: NEXT_PUBLIC_MAPBOX_TOKEN
: Your Mapbox API tokenNEXT_PUBLIC_WEB3STORAGE_TOKEN
: Your Web3.Storage API tokenNEXT_PUBLIC_WEB3STORAGE_PROOF
: Your Web3.Storage proof string
3. How to get the required tokens:
Mapbox Access Token:
- Create an account or sign in at Mapbox
- Navigate to your Account → Access Tokens
- Create a new token with the default public scopes
- Copy the token to your
.env.local
file
Web3.Storage Tokens:
- Create an account or sign in at Web3.Storage
- Create a space (instructions)
- Create a signing key (instructions) - this will be your
NEXT_PUBLIC_WEB3STORAGE_TOKEN
- Create a proof (instructions) - this will be your
NEXT_PUBLIC_WEB3STORAGE_PROOF
IPFS Setup
1. Install and Configure IPFS
- Install IPFS Desktop or Command-line:
- Desktop: Download from IPFS Desktop
-
Command-line: Follow the command-line installation guide
-
Initialize IPFS (if using command-line):
This creates a local IPFS repository in~/.ipfs
by default.
Running the Application
1. Start the IPFS Daemon
This runs a local IPFS node that manages the decentralized file storage system, allowing your application to store and retrieve files from the IPFS network.2. Launch the Application
In a separate terminal, navigate to the Next.js directory and start the development server:
This launches the frontend application on a local development server.Production Deployment
For production deployment, build the application:
You can then deploy the built application to platforms like Vercel, Netlify, or any other hosting service that supports Next.js applications.