A clone of imgur
Go to file
2023-07-01 01:48:24 +03:00
.vscode feat: add angular support to server 2023-06-30 03:37:07 +03:00
backend feat: add likes page 2023-07-01 01:48:24 +03:00
frontend feat: add likes page 2023-07-01 01:48:24 +03:00
.gitignore feat: add angular support to server 2023-06-30 03:37:07 +03:00
README.md Update README.md 2023-07-01 00:09:34 +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 here

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