diff --git a/CONTRIBUTE.md b/CONTRIBUTE.md new file mode 100644 index 0000000..071f0e6 --- /dev/null +++ b/CONTRIBUTE.md @@ -0,0 +1,5 @@ +# How to contribute + +This branch is a *simplified* version of Connect User Metrics, tailored to be deployed on Posit Connect Gallery. + +For the full version of the app, please refer to [the main branch of Connect User Metrics](https://github.com/Appsilon/ConnectUserMetrics). diff --git a/README.md b/README.md index 712ff71..9080332 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,15 @@ -# Connect Insights Dashboard +# Connect User Metrics Dashboard + +Connect User Metrics makes it easy to monitor **application adoption**, +track **user engagement** and access detailed **usage analytics** +for all your Shiny applications deployed on Posit Connect. +Some key features: + +- **Time-based analysis**: View data by day, week, or month across custom time periods +- **Flexible grouping**: Combine metrics by application, user, and date for different perspectives +- **Interactive charts**: Visualize session counts and unique users with dynamic filtering +- **Smart filtering**: Set minimum session duration and filter by specific apps or users +- **Data export**: Download raw and aggregated data as CSV files for further analysis ## Environment Variables @@ -47,7 +58,7 @@ As with environment variables, the [Instrumentation] feature is also configurabl Confirm with your Posit Connect admin that instrumentation is enabled. -[User Guide Vars]: https://docs.posit.com/connect/user/content-settings/#content-vars +[User Guide Vars]: https://docs.posit.co/connect/user/content-settings/#content-vars [rsconnect-auth]: https://go.appsilon.com/why-use-rstudio-connect-authentication-user-metrics-app [Configuration appendix]: https://docs.posit.co/connect/admin/appendix/configuration/ [DefaultServerEnv]: https://docs.posit.co/connect/admin/appendix/configuration/#Applications.DefaultServerEnv diff --git a/app/static/js/app.min.js b/app/static/js/app.min.js deleted file mode 100644 index a11e3dd..0000000 --- a/app/static/js/app.min.js +++ /dev/null @@ -1 +0,0 @@ -var App;App={}; \ No newline at end of file diff --git a/tests/cypress.config.js b/tests/cypress.config.js deleted file mode 100644 index 5c23de0..0000000 --- a/tests/cypress.config.js +++ /dev/null @@ -1,7 +0,0 @@ -module.exports = { - e2e: { - setupNodeEvents(on, config) {}, - baseUrl: 'http://localhost:3333', - supportFile: false, - }, -} diff --git a/tests/cypress/.gitignore b/tests/cypress/.gitignore deleted file mode 100644 index e0cd7dc..0000000 --- a/tests/cypress/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/screenshots/ -/videos/ diff --git a/tests/cypress/e2e/app.cy.js b/tests/cypress/e2e/app.cy.js deleted file mode 100644 index b9a58df..0000000 --- a/tests/cypress/e2e/app.cy.js +++ /dev/null @@ -1,7 +0,0 @@ -describe('app', () => { - beforeEach(() => { - cy.visit('/') - }) - - it('starts', () => {}) -})