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

https://github.com/anonrig/cloud-computing-final-project


https://github.com/anonrig/cloud-computing-final-project

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# Cloud Computing Project

## Docker

- Run the following command and go to `http://localhost:3000` on your local machine.

```shell
docker compose up
```

## Frontend

Built on top of Next.js, Tailwind.css.

- Install dependencies

```shell
npm install
```

- Run development server

```shell
npm run dev
```

## Backend

Built on top of Node.js, Prisma with PostgreSQL.

- Install dependencies

```shell
npm install
```

- Push database changes (when database is up)

```shell
npm run db:push
```

- Run development server

```shell
npm run dev
```