A set of tools for effortless management and creation of data specifications.
Check our website dataspecer.com for more information.
You can easily run the whole application in a Docker container.
Instructions are in docker-ws directory.
Check what to learn - a simple guide on how to start working on the project.
This repository is a monorepo - consisting of several packages, applications, and services that are build and developed separately, but depends on each other.
For more information about individual packages, applications, and services, please see the given directory. Each contains a README.md file with build instructions and additional documentation.
The monorepo is managed by npm workspaces and Turborepo. Please see the individual packages for their build instructions.
You can check the Cloudflare's build script that deploys all applications. We use Cloudflare Pages for that. Any commit pushed to GitHub into the repository is automatically built, and changes are deployed to the internet. Commits to other branches are also deployed as previews.
Your node -v
should be at least v18.19.0
, but v20
is recommended.
After cloning the repository you should create local config files. Please see individual applications or packages what to do.
Then
npm install
to install all external packages (including TypeScript for typechecking and Turborepo for building) and link all dependencies between local packages.npm run build
to build everything. This will execute turbo build
under the hood. This will build packages, which are necessary for the development of other packages and applications; and it also build applications themselves, which is not necessary for development (see the next step). (If you want to build only packages necessary for a specific package or application, use npx turbo run build --filter=<package-name>
. Obtain the name of the package from package.json
file.)To develop a concrete package or application, there is usually an npm run dev
script that will run live server, which updates everything. See individual packages for more details.