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

Release 0.0.3-alpha #4

Merged
merged 24 commits into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
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
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,17 @@ You can download the latest version of y on the [releases](https://github.com/sk

### 1. Prerequisites

In order to set up y on your server, you first will need:
In order to set up y on your server, you will first need:

1. A linux machine.
2. PostgreSQL.
2. PostgreSQL (version 16.0 or higher).
3. A web server (nginx/apache/etc.).

"Storage" feature _optional_ dependencies:

1. `imagemagick` - thumbnail generation for image files.
2. `ffmpeg` - thumbnail generation for video files.

### 2. Setting up PostgreSQL

After installing postgresql and initializing your database cluster (see postgresql documentation), do the following:
Expand Down
3 changes: 3 additions & 0 deletions y-server/.env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
SERVER_ADDRESS=127.0.0.1
SERVER_PORT=8080

IMAGEMAGICK_BIN=/usr/bin/convert
FFMPEG_BIN=/usr/bin/ffmpeg

DATABASE_URL=postgres://y_user:[email protected]:5432/y
Loading
Loading