Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Publish API #22

Merged
merged 14 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ CORS_HTTP_ORIGIN="http://localhost:3000"
# Diesel CLI env
DATABASE_URL="postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_URI}/${POSTGRES_DB_NAME}"

# Github App env
GITHUB_CLIENT_SECRET=""

# IPFS env
PINATA_API_KEY=""
PINATA_API_SECRET=""
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/backend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,11 @@ jobs:
with:
profile: minimal
toolchain: ${{ env.RUST_VERSION }}
- uses: docker-practice/actions-setup-docker@master
timeout-minutes: 12
# Set up Docker (already available on GitHub-hosted runners)
- name: Set up Docker
run: |
docker --version
docker info
- run: ./scripts/start_local_db.sh
- name: setup binstall
uses: taiki-e/install-action@cargo-binstall
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build
node_modules
tmp
.vscode/*
.env
.env.local
sdankel marked this conversation as resolved.
Show resolved Hide resolved

# Forc binaries installed by the server.
/forc-*
Loading
Loading