GithubHelp home page GithubHelp logo

isabella232 / plate Goto Github PK

View Code? Open in Web Editor NEW

This project forked from tacoss/plate

0.0 0.0 0.0 1.21 MB

Old boilerplate for web-pages!

Home Page: https://tacoss.github.io/plate/

JavaScript 4.06% Makefile 36.75% Pug 52.12% Svelte 4.84% Less 2.23%

plate's Introduction

Old boilerplate for web-pages!

12in

Pure hits & good music for your ears.

Remix on Glitch

How this is organized?

public/

Contains static assets that are copied once you build the files for your website.

  • Any file you save here will be public and accessible: fonts, robots.txt, stylesheets, etc.

src/

Contains the source-code for your dynamic assets: stylesheets, scripts, images, pages, etc.

  • In example, the 404.pug file here is saved as build/404.html — no folder/index is created like for pages...
  • Any file in this directory will be processed by the compiler and then written on the build destination.
  • Any components, shared or lib directory within will be ignored by the compiler.

src/app/

Contains the application code for your javascript webapp, .js files in this directory will serve as entry-points.

  • In example, the src/app/main.js will be saved as build/main.js instead.

src/lib/

All files in this directory are completely ignored by the compiler.

  • Use this directory to place all the code you don't want to publish, any chunk of code like partials, helpers, views, etc.

src/pages/

Files here are processed and/or copied to the build destination.

  • In example, the src/pages/example.md will be saved as build/example/index.html instead.
  • They can be Markdown files, or Pug templates, etc. — try using some front-matter!

src/resources/images/

Images in this directory are processed and copied to the build destination, also a images.css file will be written.

  • Images can be referred from the build destination, or through using the generated stylesheet.
  • Subdirectories can be used to group images, the stylesheet name will be the same as the folder name.

src/resources/scripts/

Scripts in this directory are processed and bundled if possible, they can be almost anything esbuild can handle.

  • In example, the src/resources/scripts/app.js will be saved as build/app.js instead.
  • By default we're using Svelte as the frontend framework for single-page-applications.

src/resources/sprites/

Images (including SVG) in this directory are processed and saved to the build destination, also a sprites.svg file will be written.

  • Images for retina screens MUST be suffixed with @2x in order to properly match and group them by name.
  • Subdirectories can be used to group sprites, the stylesheet and svg-file name will be the same as the folder name.
  • Additional stylesheets for resolving processed image-sprites (not SVG) are generated with the same name as the folder name.

src/resources/styles/

Stylesheets in this directory are processed and saved to the build destination, they can be Styl, SASS, LESS or PostCSS.

  • In example, the src/resources/styles/main.less will be saved as build/main.css instead.
  • By default we're using LESS as the minimal stylesheet pre-processor.

How to use the command line?

Either you've cloned the repo or enter the CLI on the Glitch app the commands are the same.

  • make — Shows all available tasks
  • make dev — Start development workflow
  • make test — Lint all source files
  • make clean — Remove cache files
  • make pages — Commit changes to gh-pages
  • make deploy — Publish changes from gh-pages
  • make deps — Check and install NodeJS dependencies
  • make dist — Process all stuff for production
  • make purge — Remove node_modules cache
  • make add:* — Creates a new file, e.g. make add:page NAME=about.md BODY='h1 FIXME'
  • make rm:* — Remove existing file, e.g. make rm:page NAME=about.md

Available types for :* suffix are: lib, res and page — otherwise, the filename will be inferred, e.g. make add:robots.txt will create a src/robots.txt file instead (directory separators are disallowed this way).

How to publish changes to the web?

  • You may want to use Github Pages if you're familiar with — just type make deploy and enjoy!
  • You may want to use now if you're familiar with — it already includes a now.json file for it.
  • You may want to publish your website somewhere else — the build destination is everything you'll need for...

If you've cloned this, there is a preconfigured workflow file to publish through gh-pages on every push — Modify the .github/workflows/main.yml file to disable the glitch or gh-pages tasks if you don't need them.

The make deploy command accepts a ROOT variable to configure the <base /> tag of your generated pages, e.g. make deploy ROOT=/demo — this is particullary useful if you're setting up a CNAME file and you want to publish on a separated folder instead.

Are you publishing changes from Glitch.com?

If you remixed this template on glitch you may need to export its changes back to GitHub:

  1. Make sure you've granted access to your GitHub repositories.

    Grant Access
  2. Once you've granted access, you should be able to export your work.

    Export Repository

Well-known issues

Github Actions are failing on the repository

  • The glitch task requires you to setup secrets in your repository settings, see here for details.
  • The gh-pages requires an existing branch in your repository named the same way, see below for details.

fatal: couldn't find remote ref gh-pages

  • Create a bare gh-pages branch as follows and then go back to master to retry the make deploy task.
    git checkout --orphan gh-pages
    git rm -rf .
    git commit --allow-empty -m "initial commit"
    git checkout master

plate's People

Contributors

pateketrueke avatar dependabot[bot] avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.