https://github.com/petrbroz/forge-phasing-poc
Sample Autodesk Forge application providing a 4D/phasing preview capability.
https://github.com/petrbroz/forge-phasing-poc
autodesk-forge
Last synced: 3 months ago
JSON representation
Sample Autodesk Forge application providing a 4D/phasing preview capability.
- Host: GitHub
- URL: https://github.com/petrbroz/forge-phasing-poc
- Owner: petrbroz
- Created: 2021-08-05T07:04:24.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-08-05T13:51:56.000Z (about 4 years ago)
- Last Synced: 2025-05-16T00:19:15.650Z (5 months ago)
- Topics: autodesk-forge
- Language: JavaScript
- Homepage: https://forge-phasing-poc.autodesk.io
- Size: 1000 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# forge-phasing-poc
Proof-of-concept showing how [Autodesk Forge](https://forge.autodesk.com) can be used
to build phasing/4D application.
[Live demo](https://forge-phasing-poc.herokuapp.com)
## Development
### Prerequisites
- [Register a Forge application](https://forge.autodesk.com/en/docs/oauth/v2/tutorials/create-app)
- [Node.js](https://nodejs.org) (we recommend the Long Term Support version)
- Terminal (for example, [Windows Command Prompt](https://en.wikipedia.org/wiki/Cmd.exe)
or [macOS Terminal](https://support.apple.com/guide/terminal/welcome/mac))### Setup & Run
- Clone the repository
- Install dependencies: `npm install`
- Setup environment variables:
- `FORGE_CLIENT_ID` - your Forge application client ID
- `FORGE_CLIENT_SECRET` - your Forge application client secret
- Run the server: `npm start`> When using [Visual Studio Code](https://code.visualstudio.com),
you can specify the env. variables listed above in a _.env_ file in this
folder, and run & debug the application directly from the editor.