Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: opt. white-label #255

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

kaffolder7
Copy link
Collaborator

Surfaces an (optional) WHITE_LABEL environment variable that can be defined in the .env environment file and/or passed via Docker/Docker Compose to:

  • Hide various footer links
  • Prevent db from seeding with a few user-specific pieces of data

Not intending to draw credit away from you @rajnandan1 by any means, however, being that it as an open-source project, it is common to add ‘white-labeling’ functionality, especially considering the project is licensed under MIT. The default is set to NOT include this environment variable so that attribution, by default, remains. However, it’d be great to get this merged as sometimes due to regulatory/compliance policies, some of these things need disabled from the get-go for specific users. I also don't think we need to necessarily (thoroughly) document this variable, as most users will never have a need for this.

Surfaces a `WHITE_LABEL` environment variable that can be defined in the `.env` environment file and/or passed via Docker/Docker Compose to:

* Hide various footer links
* Prevent db from seeding with a few user-specific pieces of data

Not intending to draw credit away from you @rajnandan1 by any means, however, as an open-source project, it is common to add ‘white-labeling’ functionality, especially considering the project is licensed under MIT. The default is set to NOT include this environment variable so that attribution, by default, remains. However, it’d be great to get this merged as sometimes due to regulatory/compliance policies, some of these things need disabled from the get-go for specific users.
@kaffolder7 kaffolder7 changed the title add(feature): white-label add(feature): optional white-label Feb 8, 2025
@kaffolder7 kaffolder7 changed the title add(feature): optional white-label add(feature): opt. white-label Feb 8, 2025
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

better way would be do to do it in src/lib/server/db/seedSiteData.js

}

// Remove Documentation & Github nav links from initial db seeding (if white-labeled)
if (key === "nav" && data_type === "object" && Array.isArray(value) && isWhiteLabeled) {
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we should keep github and documentation as it will help people after they do 1 click deploy

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why are we not doing for non-docker deployment?
should it be just .env variable

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

or in main.js

Copy link
Owner

@rajnandan1 rajnandan1 Feb 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

instead of doing {env} in everyfile we can do it in src/routes/(docs)/+layout.server.js

then you can use variable like data.isWhiteLabeled

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we should keep the documentation urls for easy access to what this page is about

@kaffolder7
Copy link
Collaborator Author

I'll try and get to your feedback tomorrow. I'm calling it a night. 😴

@kaffolder7 kaffolder7 changed the title add(feature): opt. white-label feat: opt. white-label Feb 10, 2025
@kaffolder7 kaffolder7 added the enhancement New feature or request label Feb 12, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants