Quickstart
This guide will help you get set up for development at ThePrintSpace.
Prerequisites
Before you begin, ensure you have:
- Access to the ThePrintSpace GitHub organization
- Required development tools installed (see below)
- Access credentials for necessary services
Development Environment Setup
1. Clone the repositories
# Clone the main application repositorygit clone https://github.com/theprintspace/[repo-name]2. Install dependencies
npm install3. Configure environment
Copy the example environment file and configure your local settings:
cp .env.example .env.local4. Start development server
npm run dev