Skip to content

Commit

Permalink
refactor: add fal.ai integration (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
cs50victor authored Feb 21, 2024
1 parent 0d19f70 commit e6abbfb
Show file tree
Hide file tree
Showing 30 changed files with 666 additions and 391 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/ci-ts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ jobs:
- name: Install Global Dependencies
run: bun install --ignore-scripts

# Errors out on build when separated into multiple steps
- name: Install, Build, and Lint Demo
run: cd demo && bun install --ignore-scripts && bun run build && bun run lint
- name: Install
working-directory: ./www
run: bun install --ignore-scripts

- name: Build
working-directory: ./www
run: bun run build

- name: Lint
working-directory: ./www
run: bun run lint
13 changes: 0 additions & 13 deletions demo/next.config.mjs

This file was deleted.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "new_media",
"version": "0.0.0",
"private": true,
"workspaces": ["www"],
"scripts": {
"build": "pnpm --dir=demo build",
"dev:server": "docker run --rm -it $(docker build -q .)",
Expand Down
Loading

0 comments on commit e6abbfb

Please sign in to comment.