https://github.com/rodesp/www
A repository for my personal website.
https://github.com/rodesp/www
Last synced: 9 days ago
JSON representation
A repository for my personal website.
- Host: GitHub
- URL: https://github.com/rodesp/www
- Owner: RodEsp
- Created: 2013-02-07T03:19:04.000Z (over 12 years ago)
- Default Branch: main
- Last Pushed: 2024-02-10T20:34:00.000Z (over 1 year ago)
- Last Synced: 2024-12-26T04:29:04.676Z (5 months ago)
- Language: JavaScript
- Size: 3.54 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rodesp.dev
A repository for my personal website.
## Setup
Install dependencies:
```sh
npm install
```## Running with Development Server
> Will be accessible on port `8080`.```sh
npm run dev
```## Running with Production Server
> Will be accessible on port `80`.```sh
npm run build:prod
npm start
```## Dockerizing
> This will build & run as if for production.### Build
> You will need to have the EMAIL_ENDPOINT environment variable set to a URL that can accept POST requests with JSON data.
```sh
docker build -t rodesp7/www . --build-arg ee=$EMAIL_ENDPOINT
```### Run
```sh
docker run --name rodesp-www --rm -p 80:80 rodesp7/www
```### Stop
```sh
docker stop rodesp-www
```