Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paalamugan/paalamugan-portfolio
My personal site
https://github.com/paalamugan/paalamugan-portfolio
emailjs gatsby gatsby-site graphql markdown react
Last synced: about 2 months ago
JSON representation
My personal site
- Host: GitHub
- URL: https://github.com/paalamugan/paalamugan-portfolio
- Owner: paalamugan
- License: other
- Created: 2021-03-22T04:04:52.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-26T03:39:10.000Z (almost 2 years ago)
- Last Synced: 2024-05-17T20:53:47.883Z (8 months ago)
- Topics: emailjs, gatsby, gatsby-site, graphql, markdown, react
- Language: HTML
- Homepage: https://old.paalamugan.com
- Size: 9.83 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Local development
--------------------------------------------------------------------------------
Node Version: 14.15.3
```
nvm install v14.15.3
nvm use v14.15.3
```Install node_modules packages:
```
npm install
```--------------------------------------------------------------------------------
### For development
It helps to export all environment variables
```
cp .env.example .env.development
```For production,
```
cp .env.example .env.production
```- Start the server and watch for changes:
```
npm run dev
```- View: http://localhost:8000
To Clean a built public folder
```
npm run clean
```--------------------------------------------------------------------------------
### Create Production Build
```
npm run build
```and
```
npm run serve
```
- View: http://localhost:9000## Testing
- Before submitting changes to repo, run
```
npm run test
```- This will run some tests to verify that
- Frontend works as expected
- No linting issues are present--------------------------------------------------------------------------------
## To Update Contents
If you want to update contents, change it in content folder(common in content folder contains header-nav and footer section).
header-nav, footer and common of all page content
```
cd ./content/common
```body content
```
cd ./content/site
```--------------------------------------------------------------------------------