Skip to content

Commit a668f98

Browse files
APS Auth Tokens (#975)
2 parents c00b91f + 929d2ce commit a668f98

31 files changed

+1363
-244
lines changed

.github/workflows/FissionUnitTest.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
run: |
2323
cd fission
2424
npm install
25+
npm install -g run-script-os
26+
npm run assetpack
2527
- name: Unit Tests
2628
id: unit-tests
2729
run: |

fission/README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@
66
2. NodeJS (v20.10.0 recommended)
77
3. TypeScript (v4.8.4 recommended) *Unknown if this is actually required*
88

9+
### Assets
10+
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.
11+
Make sure that the Downloadables directory is placed inside of the public directory like so:
12+
```
13+
/fission/public/Downloadables/
14+
```
15+
16+
This can be accomplished with the `assetpack` npm script:
17+
```
18+
npm run assetpack
19+
```
20+
921
### Building
1022
To build, install all dependencies:
1123
```bash
@@ -25,6 +37,11 @@ npm i
2537
| `prettier` | Runs prettier on the project as a check. |
2638
| `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. |
2739
| `format` | Runs `prettier:fix` and `lint:fix`. **Do not use** for the same reasons as `prettier:fix`. |
40+
| `assetpack` | Downloads the assetpack and unzips/installs it in the correct location. |
41+
42+
### Autodesk Platform Services
43+
44+
To test/enable the use of Autodesk Platform Services (APS), please follow instructions for development web server (Closed Source).
2845

2946
## Core Systems
3047
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

0 commit comments

Comments
 (0)