Developers seek to access Appwrite site environment variables in Angular without revealing sensitive information on GitHub. You can use environment.ts file for this purpose:
```typescript
export const environment = {
appwriteEndpoint: process.env.APPWRITE_ENDPOINT,
appwriteProjectId: process.env.APPWRITE_PROJECT_ID,
appwriteProjectName: process.env.APPWRITE_PROJECT_NAME
};
```
Remember to manage these variables securely on your server and not push them to GitHub.