I need to migrate/clone a project that is in https://codesandbox.io/s/8zro6m4kj9 is a list in Dojo (I do not know the version), but it is a file with extension .ts (TypeScript).
I tried to download the project and run it, then I tried to install Dojo 5, and finally I try to compile the ts.
In short, days ago I am trying to run this project on my server. In simple words could you explain how I can manage to migrate this project?
Export you project via File > Export as zip. Then unpack it and run
npm install. When that is ready runnpm install -g @dojo/cliandnpm i @dojo/cli-build-appbecause your project needs to be build by Dojo. This will install the cli for Dojo and all that is needed to build your app.Run
dojo buildto build the application. You can rundojo build --mode dev --watch memory --serveto startup a local development server.