# notifications-panel **Repository Path**: mirrors_Automattic/notifications-panel ## Basic Information - **Project Name**: notifications-panel - **Description**: Core notifications panel for WordPress.com notifications - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-07-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # WordPress.com Notifications Panel > **Note** This repository is in the process of closing down. Please _DO NOT_ attempt to update the code here. Instead please update the code in Automattic/wp-calypso. This repository should no longer be used. This repository contains the [React][react] component which displays WordPress.com notifications and provides for management of those notifications. ```js ``` ## Contributing The following sections describe what is required in order to locally develop this application. ### Authentication domain When developing the app locally we need to fake its base URL because of the way that user authentication works. The [OAuth application](https://developer.wordpress.com/apps/56641) will only respond to a select number of domain origins. Thus the following line will need to exist in your local `/etc/hosts` file. The app will be served at this address when running the development server. ``` 127.0.0.1 notifications.localhost ``` ### Installation After setting up the local domain mapping install the application with the following sequence of commands: ```bash git clone git@github.com:Automattic/notifications-panel.git cd notifications-panel npm install ``` ### Developing With the code and dependent libraries installed run the development server with the following command: ```bash npm start ``` After it boots up load the entry at [notifications.localhost:8888](notifications.localhost:8888) in your browser. [react]: https://facebook.github.io/react/ ### Automattic employees If notable UI changes are being made in PRs, be sure to open a corresponding issue in the [iOS](https://github.com/wordpress-mobile/WordPress-iOS) and [Android](https://github.com/wordpress-mobile/WordPress-Android) repositories, so that those teams can bring the apps into alignment.