One Calendar is a privacy-first calendar web app built with Next.js. It has modern security features, including e2ee, password-protected sharing, and self-destructing share links ๐Ÿ“… calendar.xyehr.cn
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: delete workflow

authored by

Evan Huang and committed by
GitHub
45c74195 35689a95

-23
-23
.github/workflows/alive.yaml
··· 1 - name: Alive Postgresql Database 2 - on: 3 - schedule: 4 - - cron: '0 9 * * 1,4' 5 - workflow_dispatch: 6 - jobs: 7 - ping-database: 8 - runs-on: ubuntu-latest 9 - steps: 10 - - name: Checkout repository 11 - uses: actions/checkout@v4 12 - - name: Set up Python 13 - uses: actions/setup-python@v5 14 - with: 15 - python-version: '3.10' 16 - - name: Install dependencies 17 - run: | 18 - python -m pip install --upgrade pip 19 - pip install psycopg2-binary 20 - - name: Ping PostgreSQL 21 - env: 22 - DB_URL: ${{ secrets.DB_URL }} 23 - run: python db.py