Flagsmith Frontend
Getting Started
These instructions will get you a copy of the project front end up and running on your local machine for development and testing purposes. See running in production for notes on how to deploy the project on a live system.
Prerequisites
What things you need to install the software and how to install them. Installing nvm and their bash script will ensure developers are on the same NodeJS version.
Location | Suggested Version |
---|---|
NodeJS | >= 16.0.0 |
npm | >= 8.0.0 |
nvm | >= 0.39.0 |
nvm zshrc setup | n/a |
Installing
cd frontend
npm i
Running the Front End
Development
Hot reloading for client / server
cd frontend
npm run dev
Production
You can deploy this application on Heroku and Dokku without making any changes, other than the API URL in '/frontend/env/project_prod.js'
Bundles, minifies and cache busts the project to a build folder and runs node in production. This can be used as part of your deployment script.
cd frontend
npm run bundle
npm start
Environment Variables
Variables that differ per environment are exported globally to window.Project in
'frontend/common/project.js', this
file gets replaced by a project.js located in 'frontend/env' by webpack based on what is set to the "ENV" environment
variable (e.g. ENV=prod).
You can override each variable individually or add more by editing 'frontend/bin/env.js'.
Current variables used between 'frontend/environment.js' and 'frontend/common/project.js':
FLAGSMITH_API_URL
: The API to hit for requests. E.g.https://edge.api.flagsmith.com/api/v1/
FLAGSMITH_ON_FLAGSMITH_API_KEY
: The flagsmith environment key we use to manage features - Flagsmith runs on Flagsmith.FLAGSMITH_ON_FLAGSMITH_API_URL
: The API URL which the flagsmith client should communicate with. Flagsmith runs on flagsmith. E.g.https://edge.api.flagsmith.com/api/v1/
. If you are self hosting and using your own Flagsmith instance to manage its own features, you would generally point this to the same domain name as your own Flagsmith instance.DISABLE_ANALYTICS_FEATURES
: Disables any in-app analytics-related features: API Usage charts, flag analytics. E.g.DISABLE_ANALYTICS_FEATURES=1
.ENABLE_FLAG_EVALUATION_ANALYTICS
: Determines if the flagsmith sdk should send usage analytics, if you want to enable Flag Analytics, set this. E.g.ENABLE_FLAG_EVALUATION_ANALYTICS=1
.PROXY_API_URL
: Proxies the API via this application. Set this to the hostname of the API being proxied. Proxies/api/v1/
through toPROXY_API_URL
. If you are using this, any setting toFLAGSMITH_API_URL
will be ignored and the browser will use the front end node server to send API requests. Do not prependapi/v1/
- it will be added automatically.GOOGLE_ANALYTICS_API_KEY
: Google Analytics key to track API usage.CRISP_WEBSITE_ID
: Crisp Chat widget Website key.FIRST_PROMOTER_ID
: First Promoter ID for checkout affiliates.ALLOW_SIGNUPS
: DEPRECATED in favour of PREVENT_SIGNUP Determines whether to prevent manual signups without invites. Set it to any value to allow signups.PREVENT_SIGNUP
: Determines whether to prevent manual signups without invites. Set it to any value to prevent signups.PREVENT_FORGOT_PASSWORD
: Determines whether to prevent forgot password functionality, useful for LDAP/SAML. Set it to any value to prevent forgot password functionality.ENABLE_MAINTENANCE_MODE
: Puts the site into maintenance mode. Set it to any value to enable maintenance.AMPLITUDE_API_KEY
: The Amplitude key to use for behaviour tracking.MIXPANEL_API_KEY
: Mixpanel analytics key to use for behaviour tracking.SENTRY_API_KEY
: Sentry key for error reporting.ALBACROSS_CLIENT_ID
: Albacross client ID key for behaviour tracking.STATIC_ASSET_CDN_URL
: Used for replacing local static paths with a cdn, .e.g https://cdn.flagsmith.com. Defaults to/
, i.e. no CDN.BASE_URL
: Used for specifying a base url path that's ignored during routing if serving from a subdirectory.USE_SECURE_COOKIES
: Enable / disable the use of secure cookies. If deploying the FE in a private network without a domain / SSL cert, disable secure cookies to ensure that session token is persisted. Default: true.COOKIE_SAME_SITE
: Define the value of the samesite attribute for the session token cookie set by the frontend. Further reading on this value is available here. Default: 'none'.
E2E testing
This project uses Test Cafe for automated end to end testing with Chromedriver.
npm test
Built With
- React
- Webpack
- Node
Running locally against your own Flagsmith API instance
We use Flagsmith to manage features we rollout, if you are using your own Flagsmith environment (i.e. by editing project_x.js-> flagsmith) then you will need to have a replica of our flags.
A list of the flags and remote config we're currently using in production can be found here.