Skip to content

Latest commit

 

History

History
53 lines (39 loc) · 809 Bytes

File metadata and controls

53 lines (39 loc) · 809 Bytes

ROYALSTACK

Prerequisites

  • Node.js >= 18
  • Git

Getting Started

git clone https://github.com/RoyalStack01/ROYALSTACK
cd ROYALSTACK

Project Structure

ROYALSTACK/
├── client/          # Frontend
├── server/          # Backend API
└── smart-contract/  # Solidity contracts

Development

Each folder is an independent workspace. Navigate into the one you're working on:

cd client
npm install
npm run dev
cd server
npm install
npm run dev
cd smart-contract
npm install

Working on a Specific Part (Sparse Checkout)

If you only need one folder:

git clone --filter=blob:none --sparse https://github.com/RoyalStack01/ROYALSTACK
cd ROYALSTACK
git sparse-checkout set server   # or: client, smart-contract