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.
- Host: GitHub
- URL: https://github.com/egeuysall/foundry
- Owner: egeuysall
- License: gpl-3.0
- Created: 2025-07-18T21:10:41.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2026-01-10T21:05:13.000Z (7 months ago)
- Last Synced: 2026-01-11T06:17:48.092Z (7 months ago)
- Topics: components, design, docker, full-stack, ideas, template, website
- Language: TypeScript
- Homepage: https://foundry.egeuysal.com
- Size: 1.5 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Security: .github/SECURITY.md
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
```