Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

APS Auth Tokens #975

Merged
merged 17 commits into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/FissionUnitTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
run: |
cd fission
npm install
npm install -g run-script-os
npm run assetpack
- name: Unit Tests
id: unit-tests
run: |
Expand Down
17 changes: 17 additions & 0 deletions fission/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@
2. NodeJS (v20.10.0 recommended)
3. TypeScript (v4.8.4 recommended) *Unknown if this is actually required*

### Assets
For the asset pack that will be available in production, download the asset pack [here](https://synthesis.autodesk.com/Downloadables/assetpack.zip) and unzip it.
Make sure that the Downloadables directory is placed inside of the public directory like so:
```
/fission/public/Downloadables/
```

This can be accomplished with the `assetpack` npm script:
```
npm run assetpack
```

### Building
To build, install all dependencies:
```bash
Expand All @@ -25,6 +37,11 @@ npm i
| `prettier` | Runs prettier on the project as a check. |
| `prettier:fix` | Runs prettier on the project to fix any issues with formating. **DO NOT USE**, I don't like the current format it uses. |
| `format` | Runs `prettier:fix` and `lint:fix`. **Do not use** for the same reasons as `prettier:fix`. |
| `assetpack` | Downloads the assetpack and unzips/installs it in the correct location. |

### Autodesk Platform Services

To test/enable the use of Autodesk Platform Services (APS), please follow instructions for development web server (Closed Source).

## Core Systems
These core systems make up the bulk of the vital technologies to make Synthesis work. The idea is that these systems will serve as a
Expand Down
Loading
Loading