├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── assets │ └── favicon.png └── compiled projects will output here ├── docs ├── installing-node.md └── installing-tweego.md ├── package.json ├── project ├── compiled │ └── compiled scripts and styles will go here └── twee │ ├── compiler-options.twee │ └── story.twee └── src ├── head-content.html ├── modules └── place modules here ├── scripts └── put your scripts here └── styles └── put your css here /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChapelR/tweego-setup/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChapelR/tweego-setup/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChapelR/tweego-setup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChapelR/tweego-setup/HEAD/README.md -------------------------------------------------------------------------------- /dist/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChapelR/tweego-setup/HEAD/dist/assets/favicon.png -------------------------------------------------------------------------------- /dist/compiled projects will output here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/installing-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChapelR/tweego-setup/HEAD/docs/installing-node.md -------------------------------------------------------------------------------- /docs/installing-tweego.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChapelR/tweego-setup/HEAD/docs/installing-tweego.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChapelR/tweego-setup/HEAD/package.json -------------------------------------------------------------------------------- /project/compiled/compiled scripts and styles will go here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/twee/compiler-options.twee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChapelR/tweego-setup/HEAD/project/twee/compiler-options.twee -------------------------------------------------------------------------------- /project/twee/story.twee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChapelR/tweego-setup/HEAD/project/twee/story.twee -------------------------------------------------------------------------------- /src/head-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChapelR/tweego-setup/HEAD/src/head-content.html -------------------------------------------------------------------------------- /src/modules/place modules here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/put your scripts here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/put your css here: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------