Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 24137fd6c0 |
@@ -3,71 +3,50 @@
|
||||
Speckle | Excel
|
||||
</h1>
|
||||
|
||||
<p align="center"><a href="https://twitter.com/SpeckleSystems"><img src="https://img.shields.io/twitter/follow/SpeckleSystems?style=social" alt="Twitter Follow"></a> <a href="https://speckle.community"><img src="https://img.shields.io/discourse/users?server=https%3A%2F%2Fspeckle.community&style=flat-square&logo=discourse&logoColor=white" alt="Community forum users"></a> <a href="https://speckle.systems"><img src="https://img.shields.io/badge/https://-speckle.systems-royalblue?style=flat-square" alt="website"></a> <a href="https://speckle.guide/dev/"><img src="https://img.shields.io/badge/docs-speckle.guide-orange?style=flat-square&logo=read-the-docs&logoColor=white" alt="docs"></a></p>
|
||||
<p align="center">
|
||||
<a href="https://speckle.community"><img src="https://img.shields.io/discourse/users?server=https%3A%2F%2Fspeckle.community&style=flat-square&logo=discourse&logoColor=white" alt="Community forum users"></a>
|
||||
<a href="https://speckle.systems"><img src="https://img.shields.io/badge/https://-speckle.systems-royalblue?style=flat-square" alt="website"></a>
|
||||
<a href="https://docs.speckle.systems"><img src="https://img.shields.io/badge/docs-docs.speckle.systems-orange?style=flat-square&logo=read-the-docs&logoColor=white" alt="docs"></a>
|
||||
</p>
|
||||
|
||||
> Speckle is the first AEC data hub that connects with your favorite AEC tools. Speckle exists to overcome the challenges of working in a fragmented industry where communication, creative workflows, and the exchange of data are often hindered by siloed software and processes. It is here to make the industry better.
|
||||
> Status: deprecated; not compatible with Speckle v3.
|
||||
> Retained as open source for reference and community use.
|
||||
> No active maintenance or feature updates are planned.
|
||||
|
||||
<h3 align="center">
|
||||
Speckle Connector for Excel
|
||||
Speckle Connector for Excel
|
||||
</h3>
|
||||
|
||||
|
||||
## Introduction
|
||||
|
||||
This repo holds Speckle's Excel Connector, it's currently released as early alpha.
|
||||
This repository contains the Speckle Excel Connector, originally released as an early alpha. It enabled sending and receiving data between Microsoft Excel and the Speckle platform. The project is no longer maintained and is not compatible with Speckle v3. For modern workflows, use current SDKs and APIs documented at docs.speckle.systems
|
||||
|
||||
## Documentation
|
||||
## Developing and debugging
|
||||
|
||||
Comprehensive developer and user documentation can be found in our:
|
||||
Note: the instructions below are preserved for archival purposes.
|
||||
|
||||
#### 📚 [Speckle Docs website](https://speckle.guide/dev/)
|
||||
### App setup
|
||||
|
||||
## Developing & Debugging
|
||||
You need a Speckle App. The server must be on https. Do not use a local server on http://localhost:3000.
|
||||
|
||||
### App Set up
|
||||
Use: https://app.speckle.systems/
|
||||
|
||||
For developing and debugging this connector you'll need to set up a Speckle App.
|
||||
The server on which the app runs must be on `https`, so **do not use a local Speckle server** on `http://localhost:3000/` as it will not work.
|
||||
In the server frontend, register a new app.
|
||||
|
||||
You can use `https://latest.speckle.dev/` or `https://speckle.xyz/`.
|
||||
Example values for an app while the Excel add-in runs on https://localhost:3000:
|
||||
|
||||
Now open up its frontend, and under your profile register a new app.
|
||||
- Name: ExcelConnector
|
||||
- Redirect URL: `https://localhost:3000`
|
||||
- Permissions: `streams:read, streams:write, profile:read, profile:email, users:read`
|
||||
|
||||
I've used the following values since my excel-connector app is running at `https://localhost:3000`:
|
||||
Then in your local `speckle-excel` repo:
|
||||
|
||||
- name: ExcelConnector
|
||||
- redirect url: `https://localhost:3000`
|
||||
- permissions: `streams:read, streams:write, profile:read, profile:email, users:read`
|
||||
- Duplicate `.env sample` to `.env.local`
|
||||
- Add your `app id` and `secret`
|
||||
- Set `BASE_URL=https://localhost:3000`
|
||||
|
||||
Take note of the `app id` and `secret`, then in your speckle-excel repo:
|
||||
### Running locally
|
||||
|
||||
- duplicate `.env sample` to `.env.local`
|
||||
- then fill it in with your new `app id` and `secret`
|
||||
- note that the `BASE_URL=https://localhost:3000`
|
||||
|
||||
### Running the connector locally
|
||||
|
||||
Run it locally:
|
||||
|
||||
- `npm install` (first time only)
|
||||
- `npm run serve`
|
||||
- _You might be prompted to install some certificates, go ahead and accept_
|
||||
- _Wait for the the process to start the Vue app, then in a separate terminal either_
|
||||
- `npm run excel` will run excel desktop and sideload the plugin
|
||||
- `npm run excel:web` will run excel web, open the document defined in `packages.json` and sideload the plugin
|
||||
|
||||
If this worked out well, you should see the connector sideloaded correctly:
|
||||
|
||||

|
||||
|
||||
## Contributing
|
||||
|
||||
Please make sure you read the [contribution guidelines](.github/CONTRIBUTING.md) for an overview of the best practices we try to follow.
|
||||
|
||||
## Community
|
||||
|
||||
The Speckle Community hangs out on [the forum](https://discourse.speckle.works), do join and introduce yourself & feel free to ask us questions!
|
||||
|
||||
## License
|
||||
|
||||
Unless otherwise described, the code in this repository is licensed under the Apache-2.0 License. Please note that some modules, extensions or code herein might be otherwise licensed. This is indicated either in the root of the containing folder under a different license file, or in the respective file's header. If you have any questions, don't hesitate to get in touch with us via [email](mailto:hello@speckle.systems).
|
||||
```bash
|
||||
npm install
|
||||
npm run serve
|
||||
Reference in New Issue
Block a user