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