An open API service indexing awesome lists of open source software.

https://github.com/egeuysall/foundry

Clone. Build. Ship.
https://github.com/egeuysall/foundry

components design docker full-stack ideas template website

Last synced: about 1 month ago
JSON representation

Clone. Build. Ship.

Awesome Lists containing this project

README

          

# Foundry

Clone. Build. Ship.

## Quick Start

### Setup

```bash
# Clone and setup
git clone https://github.com/egeuysall/foundry.git
cd foundry

# Environment files
cp frontend/.env.example frontend/.env
cp backend/.env.example backend/.env

# Install dependencies
cd apps/web && pnpm install
cd ../api && go mod download
```

### Development

```bash
# Local development
cd apps/web && pnpm dev
cd ../api && air
```

## Deployment

```bash
# IMPORTANT: Get SSL certificate first
sudo certbot certonly --standalone -d --email --agree-tos --no-eff-email

# Deploy with Docker
docker-compose up --build -d
```