38 lines
626 B
Markdown
38 lines
626 B
Markdown
# Server home landing page
|
|
|
|
This repository is a (primitive) base landing page for my personal homepage.
|
|
Built in ReactJS with no other non-pertinent assets.
|
|
|
|
## Build & Run:
|
|
|
|
|
|
### Development
|
|
```
|
|
// Install dependencies.
|
|
npm install
|
|
|
|
// Run local hot-reload instance.
|
|
npm run start
|
|
```
|
|
|
|
### Release
|
|
* Dockerized option is also available.
|
|
```
|
|
// Install prod-only dependencies.
|
|
npm install --only=production
|
|
|
|
// Generate build folder.
|
|
npm run build
|
|
|
|
// Serve built directory.
|
|
serve -s build
|
|
```
|
|
---
|
|
|
|
|
|
|
|
### Change Log
|
|
* 2024-07-12 - Added dockerized capability.
|
|
* 2024-07-11 - Final base build concluded + live release.
|
|
|