This mono repo contains the frontend for the Autonolas project. It is based on the Nx workspace and contains the following projects:
To start the development server run npx nx run [app-name]:serve
. Open your browser and navigate to http://localhost:4200/.
To execute tasks with Nx use the following syntax:
nx <target> <project> <...options>
You can also run multiple targets:
nx run-many -t <target1> <target2>
..or add -p
to filter specific projects
nx run-many -t <target1> <target2> -p <proj1> <proj2>