Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/technologiestiftung/challenge-datenmanagement-excel-tooling
https://github.com/technologiestiftung/challenge-datenmanagement-excel-tooling
Last synced: 30 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/technologiestiftung/challenge-datenmanagement-excel-tooling
- Owner: technologiestiftung
- License: mit
- Created: 2023-10-06T12:14:45.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-12T18:02:45.000Z (8 months ago)
- Last Synced: 2024-04-13T02:15:55.326Z (8 months ago)
- Language: TypeScript
- Size: 695 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
![](https://img.shields.io/badge/Built%20with%20%E2%9D%A4%EF%B8%8F-at%20Technologiestiftung%20Berlin-blue)
[![All Contributors](https://img.shields.io/badge/all_contributors-0-orange.svg?style=flat-square)](#contributors-)
# Data Management Excel Tooling
This repository contains proof of concept code for explorations of how to use Excel as a data management tool. The premise is that we try to use Excel as the interface to data base. Since Excel is a already well known tool in the administration.
See also the subfolder [/add-in/et/](/add-in/et/) for a proof of concept for an Excel add-in that can be used to manage data in a database. This is actually the more promising way to handle this. It allows to have a more fine grained method of user authorization and allows to use modern web development tools to build the interface. The example add-in you can find there is the same as the scripts under /office-scripts/ but with a more modern interface.
## Prerequisites
- Office 365 License
- optional Sharepoint
- Supabase Account
- Node.js## Usage
- Create a project on supabase and get your project id, supbase api url and service role key
- Use the supabase CLI to deploy the local migrations to supabase.com```bash
supabase login
supabase link --project-ref
supabase db push
```- Populate the database with some data
- Add your service role key and supabase url to the top of the scripts in `/office-scripts/populate-worksheet.ts` and `/office-scripts/send-worksheet.ts`.
- Open a blank Excel workbook and add the scripts to the workbook automate ribbon as new scriptsExecute the populate-worksheet.ts script to populate the worksheet with data from the database. Execute the send-worksheet.ts script to send the worksheet to the database.
### Frontend
In the folder [/frontend](/frontend/) you will find a Next.js application where you can watch the changes made to the database in realtime. Follow the README.md in that folder to learn how to set it up and connect it to your database.
## Development
- We use [direnv](https://github.com/direnv/direnv) to setup environment variables. You can use the `.envrc.example` file as a template for your own `.envrc` file.
- Here are some resources for learning about office scripts.
- https://learn.microsoft.com/en-us/office/dev/scripts/overview/excelYou will have to edit and develop the scripts within Excel. There seems to be no way to use an external editor.
In the folder [xlsx](/xlsx/) you will find a sample Excel file that you can use to test the office-scripts and a script [/xlsx/import.js](/xlsx/import.js) that you can use to populate the database. See the [/xlsx/README.md](/xlsx/README.md) for more information.
## Contributing
Before you create a pull request, write an issue so we can discuss your changes.
## Contributors
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
## Credits