A clone of imgur
Go to file
2023-07-01 00:25:21 +03:00
.vscode feat: add angular support to server 2023-06-30 03:37:07 +03:00
backend feat: add support for domain hosting 2023-07-01 00:25:21 +03:00
frontend fix: make private images visitable 2023-07-01 00:07:11 +03:00
.gitignore feat: add angular support to server 2023-06-30 03:37:07 +03:00
README.md readme 2023-07-01 00:08:56 +03:00

Clonegur

Created by TopchetoEU

Technologies:

  • Deno
  • Angular
  • My brainz

What is this?

This is exactly what the title sells it for - it's an imgur clone (but kinda worse). Currently, the server is hosted at [clonegur.topcheto.eu]

Running the code

Development

Start the backend with:

# Executed in the backend folder
$ deno run -A src/index.ts

And the frontend with:

# Executed in the frontend folder
$ ng serve

Production

First, build the frontend:

# Executed in the frontend folder
$ ng build

Then, copy the contents of backend/static. Finally start the backend:

# Executed in the backend folder
$ deno run --allow-read --allow-write --allow-net main.ts