https://github.com/devpaul/devpaul-old
https://github.com/devpaul/devpaul-old
website
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/devpaul/devpaul-old
- Owner: devpaul
- Created: 2018-11-18T18:28:41.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-02T19:17:06.000Z (over 3 years ago)
- Last Synced: 2025-02-12T05:56:45.321Z (over 1 year ago)
- Topics: website
- Language: TypeScript
- Homepage: https://devpaul.com
- Size: 2.55 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Devpaul server deployment
## Deployment
### Remote deployment
```
> docker-machine env devpaul
```
Follow the directions on screen to switch docker environments
### Deploying
```
> npm run clean
> npm run build
> docker build -t devpaul-static:2.1.0 .
> docker stop devpaul.com
> docker rm devpaul.com
> docker run --name devpaul.com -d -p 8234:80 devpaul-static:2.1.0
```