Express API for the TalentTrust decentralized freelancer escrow protocol. Handles contract metadata, reputation, and integration with Stellar/Soroban.
- Node.js 18+
- npm or yarn
# Clone and enter the repo
git clone <your-repo-url>
cd talenttrust-backend
# Install dependencies
npm install
# Build
npm run build
# Run tests
npm test
# Start dev server (with hot reload)
npm run dev
# Start production server
npm start| Script | Description |
|---|---|
npm run build |
Compile TypeScript to dist/ |
npm run start |
Run production server |
npm run dev |
Run with ts-node-dev |
npm test |
Run Jest tests |
npm run lint |
Run ESLint |
- Fork the repo and create a branch from
main. - Install deps, run tests and build:
npm install && npm test && npm run build. - Open a pull request. CI runs build (and tests when present) on push/PR to
main.
GitHub Actions runs on push and pull requests to main:
- Install dependencies
- Build the project (
npm run build)
Keep the build passing before merging.
MIT