Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/fzl-22/digistar-day6-final-project

Final project of BE 9 class by Digistar Class 2024.
https://github.com/fzl-22/digistar-day6-final-project

Last synced: about 2 months ago
JSON representation

Final project of BE 9 class by Digistar Class 2024.

Awesome Lists containing this project

README

        

# Assignment Day 6: Hacker Back End [Digistar Class 2024]

| Name | Class |
| ------------------- | ----------------- |
| Ahmad Mu'min Faisal | Hacker Back End 9 |

## How to run the project

> This project uses TypeScript. So to run the project, it needs to be compiled to JavaScript. The `start` script is already includes the compilation script.

First, install the dependencies.

```bash
npm install
```

Then, run the project with start script to include the `.env`.

```bash
# this script also runs `npm run build` to compile the project to JavaScript.
npm run start
```

If you want to use `ts-node-dev` instead, run this command.

```bash
npm run dev
```