Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/fzl-22/digistar-day6-final-project
- Owner: fzl-22
- Created: 2024-09-07T05:35:21.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-09-07T12:55:14.000Z (4 months ago)
- Last Synced: 2024-09-08T07:59:59.449Z (4 months ago)
- Language: TypeScript
- Size: 91.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```