Skip to content

Commit

Permalink
Merge branch 'preview'
Browse files Browse the repository at this point in the history
  • Loading branch information
pdelfan committed Dec 16, 2023
2 parents efbef7b + 730623e commit ae49714
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 15 deletions.
32 changes: 19 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,28 @@
Ouranos
![logo](./public/logo.svg)

# Ouranos

Your friendly Bluesky client for the web. Made with Next.js.

## Getting Started

First, run the development server:
Install NPM packages in the project directory.

```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
npm install
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
Run `npm run dev` and open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

The following environment variables are required:

- NEXTAUTH_SECRET (generate one using `openssl rand -base64 32` or visit [https://generate-secret.vercel.app/32](https://generate-secret.vercel.app/32)). You won't need to prefix it with `NEXT_PUBLIC` if you are deploying to Vercel.
- NEXTAUTH_URL (`http://localhost:3000` while running locally. You won't need this variable in production if you're deploying to Vercel.)

## Project Roadmap

Latest changes and updates are added to `Ouranos Roadmap` under [Projects](https://github.com/users/pdelfan/projects/1).

You'll need these environment variables:
## FAQ

- NEXTAUTH_SECRET (generate one using `openssl rand -base64 32`)
- NEXTAUTH_URL (`http://localhost:3000` while running locally)
Please visit [https://useouranos.app/about](https://useouranos.app/about).
1 change: 0 additions & 1 deletion src/app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import Image from "next/image";
import Link from "next/link";

export default function NotFound() {
return (
Expand Down
1 change: 0 additions & 1 deletion src/components/feedback/altTag/AltTag.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ export default function AltTag(props: Props) {
onClick={(e) => {
e.stopPropagation();
}}
onInteractOutside={() => console.log("efsf")}
className="flex items-center justify-center fixed inset-0 z-50 "
>
<Dialog.Close asChild>
Expand Down

0 comments on commit ae49714

Please sign in to comment.