https://github.com/anonrig/cloud-computing-final-project
https://github.com/anonrig/cloud-computing-final-project
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/anonrig/cloud-computing-final-project
- Owner: anonrig
- Created: 2022-06-23T22:37:59.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-26T21:01:06.000Z (about 4 years ago)
- Last Synced: 2025-01-26T17:12:21.058Z (over 1 year ago)
- Language: JavaScript
- Size: 97.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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
```