Things you can do with this repository:
first, open a terminal/console/bash
if you have set up your ssh keys (see github help)
git clone git@github.com:mslitto/litto.work
if you do not have set up your ssh keys or do not know what they are:
git clone https://github.com/mslitto/litto.work
now you have a local copy in ./litto.work:
cd ./litto.work
-
shows changed files, run to check which files changed
-
adds all changed files to history
-
add all 'git added' changes
-
push all committed changes to github
-
load all changes from github
-
shows all available npm commands
-
creates production build in public directory
-
start the development server on localhost:3000
first, run the development server:
npm start
then load http://localhost:3000
you should see a preview of the page now. you can now change any files in the src/ directory and see the changes once you reload the page.
once you are done changing content and happy with the result:
# build the files from ./src/ to ./docs/
npm run build