Skip to content
This repository was archived by the owner on Apr 25, 2025. It is now read-only.

Commit 1a7aff8

Browse files
committed
v0.0.2
1 parent b6727b7 commit 1a7aff8

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.do/app.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ services:
44
github:
55
branch: main
66
deploy_on_push: false
7-
repo: fumblehool/sample-typescript
7+
repo: digitalocean/sample-typescript
88
name: sample-typescript

.do/deploy.template.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ spec:
44
- environment_slug: node-js
55
git:
66
branch: main
7-
repo_clone_url: https://github.com/fumblehool/sample-typescript.git
7+
repo_clone_url: https://github.com/digitalocean/sample-typescript.git
88
name: sample-typescript

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ We provide a sample app using Typescript that you can deploy on App Platform. Th
1212

1313
Click this button to deploy the app to the DigitalOcean App Platform. If you are not logged in, you will be prompted to log in with your DigitalOcean account.
1414

15-
[![Deploy to DigitalOcean](https://www.deploytodo.com/do-btn-blue.svg)](https://cloud.digitalocean.com/apps/new?repo=https://github.com/fumblehool/sample-typescript/tree/main)
15+
[![Deploy to DigitalOcean](https://www.deploytodo.com/do-btn-blue.svg)](https://cloud.digitalocean.com/apps/new?repo=https://github.com/digitalocean/sample-typescript/tree/main)
1616

1717
Using this button disables the ability to automatically re-deploy your app when pushing to a branch or tag in your repository as you are using this repo directly.
1818

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
22
"name": "app",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"private": true,
55
"scripts": {
6-
"start": "npm run build && node ./dist/www.js",
6+
"start": "node ./dist/www.js",
7+
"prestart": "npm run build",
78
"prebuild": "mkdir -p dist/views && cp -R views/* dist/views/",
89
"build": "tsc"
910
},

0 commit comments

Comments
 (0)