Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/psygo/googol

A completely manual search engine.
https://github.com/psygo/googol

google search search-engine

Last synced: about 12 hours ago
JSON representation

A completely manual search engine.

Awesome Lists containing this project

README

        

# Googol

A completely manual search engine.

## Dev

### Services and Tech Used

- [Vercel](https://vercel.com) for handling deployment, and cron jobs.
- [Vercel Postgres](https://vercel.com/docs/storage/vercel-postgres) for handling the DB.
- [Drizzle](https://orm.drizzle.team) for ORM.
- [Clerk](https://clerk.com) for authentication.

### Environment Variables

This is the shape of the project's environment variables:

```env
#-----------------------------------------------------------
# 1. DB

NODE_ENV=

DATABASE_URL=

#-----------------------------------------------------------
# 2. Clerk

NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=
CLERK_SECRET_KEY=

CLERK_WEBHOOKS_USER_EVENTS=

#-----------------------------------------------------------
```

### Using Ngrok for Local Development

Expose your local host to the web:

```sh
ngrok http http://localhost:3000
```