Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/brunos3d/typescript-docker-template

🐳 NODE.TS - Bootstrap your typescript project with one click.
https://github.com/brunos3d/typescript-docker-template

boilerplate docker easy-to-use hello-world nodejs sandbox standard template typescript

Last synced: 7 days ago
JSON representation

🐳 NODE.TS - Bootstrap your typescript project with one click.

Awesome Lists containing this project

README

        

# typescript-docker-template

🐳 NODE.TS - TypeScript starter for quick test projects using Docker.
## Installation

#### 1.a. Start using one click



GitHub buttons



Click on the "Use this template" button

#### 1.b. Clone project

```
$ git clone [email protected]:BrunoS3D/typescript-docker-template.git your-app-name
$ cd your-app-name
```

#### 2. Install dependencies

```sh
$ yarn install # or just yarn
```

## Run Locally

#### 1. Start project in dev mode

```sh
$ yarn dev
```

#### 2. Start project with Docker

```sh
$ docker build . -t your-app-name
```

```sh
$ docker run --rm your-app-name
```