This website's docs

Learn how to use and customise this website to your liking.

Getting Started From Scratch

this is to get started with a project like this, although I would recommend doing the normal getting started more info can be found on the official docs

  1. Create a folder for your project
  2. Open it in Vs Code
  3. Use ctr/cmd + ` to open a terminal
  4. write the following
    npm create analog@latest
  5. give the project a name
  6. use angular 17 template
  7. use tailwindcss
  8. create the necessary folders:
    • in the assets folder add the following folders:
      • fonts
      • images
    • in the src folder add this folder:
      • content
        • blog
    • in the app folder add
      • components
      • layouts
      • models
      • services
  9. cd into the analog-demo folder by typing
    cd analog-demo
  10. run
    npm i 
    to install all of the dependencies
  11. use
    npm run dev
    to run the program