Skip to content

Commit

Permalink
feat(env): unify app configs for api and indexer, update doc
Browse files Browse the repository at this point in the history
refs #313
  • Loading branch information
ygrishajev committed Sep 16, 2024
1 parent baa36d3 commit 4a4185c
Show file tree
Hide file tree
Showing 16 changed files with 9,223 additions and 35,379 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
</div>

- [Quick Start](#quick-start)
- [Apps Configuration](./doc/apps-configuration.md)
- [Services](#services)
- [Monitoring](#monitoring)
- [Example SQL Queries](#example-sql-queries)
Expand Down
17 changes: 0 additions & 17 deletions apps/api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,6 @@

You can make sure the api is working by accessing the status endpoint: `http://localhost:3080/status`

## Environment Variables

This app utilizes `.env*` files to manage environment variables. The list of environment variables can be found in the `env/.env.sample` file. These files are included in version control and should only contain non-sensitive values. Sensitive values are provided by the deployment system.

### Important Notes:
- **Sensitive Values**: The only env file that's ignored by Git is `env/.env.local`, which is intended for sensitive values used in development.
- **Loading Order**: Environment files are loaded in a specific order, depending on two environment variables: `DEPLOYMENT_ENV` and `NETWORK`.

### Loading Order:
1. `env/.env.local` - Contains sensitive values for development.
2. `env/.env` - Default values applicable to all environments.
3. `env/.env.${DEPLOYMENT_ENV}` - Values specific to the deployment environment.
4. `env/.env.${NETWORK}` - Values specific to the network.

### Additional Details:
- **Variable Precedence**: If a variable is already set in the environment, it will not be overridden by values in the `.env*` files. This behavior is critical when adjusting the loading order of these files.

## Testing
Project is configured to use [Jest](https://jestjs.io/) for testing. It is intended to be covered with unit and functional tests where applicable.

Expand Down
1 change: 1 addition & 0 deletions apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"@akashnetwork/akash-api": "^1.3.0",
"@akashnetwork/akashjs": "^0.10.0",
"@akashnetwork/database": "*",
"@akashnetwork/env-loader": "*",
"@akashnetwork/http-sdk": "*",
"@casl/ability": "^6.7.1",
"@chain-registry/assets": "^1.64.79",
Expand Down
2 changes: 1 addition & 1 deletion apps/api/src/console.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import "reflect-metadata";
import "./dotenv";
import "@akashnetwork/env-loader";
import "./open-telemetry";

import { context, trace } from "@opentelemetry/api";
Expand Down
23 changes: 0 additions & 23 deletions apps/api/src/dotenv.ts

This file was deleted.

2 changes: 1 addition & 1 deletion apps/api/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import "reflect-metadata";
import "@akashnetwork/env-loader";
import "./open-telemetry";
import "./dotenv";

async function bootstrap() {
/* eslint-disable @typescript-eslint/no-var-requires */
Expand Down
33 changes: 0 additions & 33 deletions apps/deploy-web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,36 +11,3 @@
4. Start the app with `npm run dev`.

The website should be accessible: [http://localhost:3000/](http://localhost:3000/)

## Environment Variables

### Overview
Environment variables in this Next.js app follow the standard Next.js behavior, as documented in the [Next.js environment variables documentation](https://nextjs.org/docs/basic-features/environment-variables). This means that files like `.env.local` or `.env.production` will be automatically loaded based on the environment in which the app is running.

However, we have extended this functionality to support more granular environment-specific configurations. Environment variables are stored in the `./env` directory, where multiple `.env` files exist for different deployment environments (stages):

- `.env` - Loaded for any environment
- `.env.production` - Loaded for the production stage
- `.env.staging` - Loaded for the staging stage

### How Environment Variables Are Loaded
We use **dotenvx** to manage and load environment variables. This allows us to take advantage of its features, such as **variable interpolation** (i.e., using other environment variables within variable values).

### Validation with Zod
Environment variables are validated using **Zod** schemas, ensuring that all required variables are present and have valid values. The validation logic can be found in the file `src/config/env-config.schema.ts`.

We use two separate Zod schemas:
- **Static Build-Time Schema**: Validates variables at build time. If any variables are missing or invalid during the build process, the build will fail.
- **Dynamic Server Runtime Schema**: Validates variables at server startup. If any variables are missing or invalid at this stage, the server will fail to start.

This validation ensures that both build and runtime configurations are secure and complete before the app runs.

### App Configuration
App configurations, including environment variables, are located in the `src/config` directory. In our setup:
- **Environment configs** are handled separately from **hardcoded configs**.
- Hardcoded configs are organized by domain to maintain a clear structure and separation of concerns.

### Sample Environment Variables
All environment variables required for the app, along with their expected structure and types, can be found in the `env/.env.sample` file. This sample file serves as a template for setting up your environment variables and ensures that all necessary variables are accounted for in each environment.

By organizing environment variables and configuration this way, we ensure a consistent, safe, and scalable approach to managing different deployment environments.
1 change: 1 addition & 0 deletions apps/indexer/env/.env.mainnet
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ACTIVE_CHAIN=akash
2 changes: 2 additions & 0 deletions apps/indexer/env/.env.production
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
HEALTH_CHECKS_ENABLED=true
STANDBY=false
4 changes: 4 additions & 0 deletions apps/indexer/env/.env.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
NETWORK=sandbox
ACTIVE_CHAIN=
AKASH_DATABASE_CS=
AKASH_SANDBOX_DATABASE_CS=
1 change: 1 addition & 0 deletions apps/indexer/env/.env.sandbox
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ACTIVE_CHAIN=akashSandbox
1 change: 1 addition & 0 deletions apps/indexer/env/.env.testnet
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ACTIVE_CHAIN=akashTestnet
3 changes: 2 additions & 1 deletion apps/indexer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,16 @@
"main": "server.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "npm run start",
"format": "prettier --write ./*.{js,json} **/*.{ts,js,json}",
"lint": "eslint .",
"start": "webpack --mode development --config webpack.dev.js --watch",
"dev": "npm run start",
"test": "jest"
},
"dependencies": {
"@akashnetwork/akash-api": "^1.3.0",
"@akashnetwork/database": "*",
"@akashnetwork/env-loader": "*",
"@cosmjs/crypto": "^0.32.4",
"@cosmjs/encoding": "^0.32.4",
"@cosmjs/math": "^0.32.4",
Expand Down
2 changes: 2 additions & 0 deletions apps/indexer/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import "@akashnetwork/env-loader";

import { activeChain, chainDefinitions } from "@akashnetwork/database/chainDefinitions";
import * as Sentry from "@sentry/node";
import express from "express";
Expand Down
106 changes: 106 additions & 0 deletions doc/apps-configuration.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
# Environment Variables & Configuration

## Overview

Both the **Next.js frontend** and **Node.js backend** applications use environment variables to manage configuration. This guide provides a unified approach to managing these variables, along with **Zod**-based validation for ensuring correctness across both apps.

### Environment Files

We use `.env*` files for managing environment variables, with a consistent loading order across both applications. These files help separate environment-specific configurations from sensitive information.

### Next.js Environment Variables Behavior

In addition to the logic described below environment variables in the **Next.js app** follow the standard Next.js behavior, as documented in the [Next.js environment variables documentation](https://nextjs.org/docs/basic-features/environment-variables). This means that files like `.env.local` or `.env.production` will be automatically loaded based on the environment in which the app is running, ensuring smooth transitions between development, staging, and production environments.

### Loading Order

The environment variables are loaded in the following order for both **Next.js** and **Node.js** applications:

1. **System Environment Variables**: Variables set in the system environment (e.g., through CI/CD pipelines) take the highest precedence and are never overridden by values from `.env` files.
2. **`env/.env.local`**: Contains sensitive values specific to local development. This file is not tracked by Git and should contain secrets for local use.
3. **`env/.env`**: Contains default values applicable to all environments. This file is included in version control and should not contain sensitive data.
4. **`env/.env.${DEPLOYMENT_ENV}`**: Contains values specific to the deployment environment (e.g., production, staging). This file is loaded based on the `DEPLOYMENT_ENV` variable.
5. **`env/.env.${NETWORK}`**: Contains values specific to the network environment (e.g., mainnet, testnet). This file is loaded based on the `NETWORK` variable.

### Variable Precedence

- Variables loaded from higher-priority sources (like system environment variables or `.env.local`) will override those defined in lower-priority files (such as `.env` or `.env.production`).

### Configuration Structure

All application configurations should be organized and stored in specific files within the app directories:

- **Configuration Files**:
- Configurations must be placed in `apps/*/config/<module>.config.ts` files for each module-specific configuration.
- Environment variables should retain their original **SCREAMING_CASE** names and be parsed/validated directly using **Zod** schemas, without renaming.

- **Split by Domain**:
- Configurations should be **split by application domain**. This helps maintain clarity and separation of concerns, with configurations logically grouped based on the features or domains they pertain to (e.g., database, authentication, API endpoints).

### Environment Variables

- **Separation of Environment Variables**:
- Environment variables must be separated from hardcoded configuration values to keep sensitive or environment-specific data outside of the codebase.
- Use `.env*` files as described in the **Loading Order** section, and ensure all environment variables are **validated** using schemas before they are used within the application.

### Zod-Based Validation

Both the **Next.js** and **Node.js** apps use **Zod** schemas to validate environment variables, ensuring that all required variables are present and have valid values. Validation is applied at two stages:

- **Build-Time Validation** (Next.js only): In the **Next.js** app, variables are validated at build time using **Zod** schemas defined in the `src/config/env-config.schema.ts` file. If any required variables are missing or invalid, the build will fail.

- **Runtime Validation** (All Apps): Both **Next.js** and **Node.js** applications perform **runtime validation** when the server starts. This ensures that all critical environment variables are present and valid before the server launches. If any required variables are missing or incorrect, the server will fail to start.

### Example of Environment Variable Validation with Zod

```typescript
// apps/config/env.config.ts
import { z } from "zod";

// Define the schema for environment variables
const envSchema = z.object({
LOG_LEVEL: z.enum(["fatal", "error", "warn", "info", "debug", "trace"]).optional().default("info"),
DATABASE_HOST: z.string(),
DATABASE_USER: z.string(),
SECRET_KEY: z.string(),
});

// Parse and validate the environment variables
export const envConfig = envSchema.parse(process.env);

// Access the variables
console.log(envConfig.LOG_LEVEL);
console.log(envConfig.DATABASE_HOST);
```

### Sample Environment Variables

Here’s an example `.env` file that corresponds to the validation schema above:

```bash
# .env (shared across environments)
LOG_LEVEL=info
DATABASE_HOST=https://db.example.com
DATABASE_USER=myUser
SECRET_KEY=MY_SECRET_KEY

# .env.local (development-specific, not included in version control)
DATABASE_HOST=http://localhost:5432
DATABASE_USER=localUser
SECRET_KEY=LOCAL_SECRET_KEY

# .env.production (production-specific)
DATABASE_HOST=https://prod-db.example.com
SECRET_KEY=PROD_SECRET_KEY
```

### Sample Environment Variables Template

A template for setting up the required environment variables is provided in the `env/.env.sample` file for both types of applications. This file contains examples of all the necessary environment variables.

By following this approach, we ensure a secure, scalable, and consistent configuration process for managing environment variables in both **Next.js** and **Node.js** applications, with robust validation through **Zod** and clear separation of configurations by application domain.

### Disclaimer

If you find any inconsistencies in the codebase compared to this documentation, please raise an issue or create a pull request to update the codebase accordingly. This documentation serves as the source of truth for managing environment variables and configurations across the applications.

Loading

0 comments on commit 4a4185c

Please sign in to comment.