-
-
Notifications
You must be signed in to change notification settings - Fork 167
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
base: main
Are you sure you want to change the base?
Conversation
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.
There was a problem hiding this comment.
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) { |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
or in main.js
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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
I'll try and get to your feedback tomorrow. I'm calling it a night. 😴 |
Surfaces an (optional)
WHITE_LABEL
environment variable that can be defined in the.env
environment file and/or passed via Docker/Docker Compose to: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.