Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/brunos3d/typescript-docker-template
- Owner: brunos3d
- License: mit
- Created: 2021-07-25T18:41:46.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-22T18:16:18.000Z (about 3 years ago)
- Last Synced: 2024-11-19T05:59:39.770Z (2 months ago)
- Topics: boilerplate, docker, easy-to-use, hello-world, nodejs, sandbox, standard, template, typescript
- Language: Dockerfile
- Homepage:
- Size: 14.6 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
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
```