This is a sample project to get you started building a static website with TakeShape (TS). You can see the sample project in action here: https://shape-startup.takeshapesampleproject.com/
- Use the "Deploy to TakeShape" button to create the project in TakeShape.
- Set up and run the client application
git clone https://github.com/takeshape/takeshape-starter-startup
npm install
- This will install all dependenciesnpm run init
- A browser window should open, where you can log into or create a TakeShape account. If you encounter any errors in this process, runnpm run cli-init
to log into your account from the command line. Follow the command prompts to set up your local environment to communicate with TS.npm run start
- The server runs on http://localhost:5000 by default
- Have fun playing around with the sample site!
- Change some markup a template file and the site will regenerate automatically
- Try adding a new field to an existing content type then add it to the corresponding GraphQL query and template
When you are done tinkering and are ready to put your site online follow these steps:
- Configure a Static Site in the TakeShape webapp.
- Open your project in TakeShape
- Click on "Static Sites" from the project dropdown menu.
- Click the "NEW STATIC SITE" button.
- Give your site a name such as "Production" or "Staging"
- Select your "Provider" and enter in the appropriate credentials.
- Use the CLI to point your local development folder to the static site you just created.
npm run init
- Follow the command prompts
- Use the CLI to deploy your templates!
npm run deploy
- Deploy your site to TS!
- Once the templates are deployed TakeShape will generate HTML and push your website to the configured provider
- Check your bucket/webserver to see the fruits of your labor
- Additional publishes can be triggered using the "Deploy " in the project menu
Files and directories in this repo are designed to get you up and running with TS in seconds. After you poke around a bit you'll see how easy it is to lay in your own build processes and tools. One of the core concepts of TS is to do just enough and provide just enough structure to make your life easier without getting in your way. We want you to be creative.
src
- Holds template files (configurable bytemplatePath
) that will be processed by the TS static site generator or files and directories that will be handled by your own build process.static
- (configurable in tsg.yml) Anything inside the static folder will be copied over into the build folder. If you have a build process to generate files like scss into css or combine js files they should output into the static folder or in subdirectories of the static folder.
.graphqlrc
- Generated byinit
. Reference to the TS endpoint.takeshaperc
- Generated byinit
. Details to connect to a specific project on the TS platformtsg.yml
- Configuration options to build your project including paths to relevant directories, routes and data contexts
templatePath: src/templates #Sets the path to look for templates
staticPath: static #TS deploys this directory. All of your JS, CSS need to end up here. Files like robots.txt, humans.txt and other files that do not need processing should live here.
buildPath: build #Temporary build directory
locale: en-us #defaut
dates:
tz: America/New_York #default
format: LLL #default
context: #Global context available to all routes.
assets: ../../static/assets/manifest.json
[KEY]: [VALUE]
...
routes: #Routes tell TS which template to join with which context (graphql query) and the format of the resulting directory structure to generate
homepage:
path: /
template: pages/homepage.html
context: data/homepage.graphql
...
TS uses the Nunjucks templating language. You can find detailed documentation on the Nunjucks site: (https://mozilla.github.io/nunjucks/templating.html
route(routeName: String)
Returns a relative path to a piece of content as defined by the routes in{{ post | route('posts') }}
tsg.yml
. The input Object must have the necessary fields specified in the route path in order to construct the path properly.md
Markdown to safe HTML using the CommonMark spec http://commonmark.org/{{ markdown | md }}
numberFormat(format: String)
Returns a number formatted according to the the format specifier string https://github.com/d3/d3-format{{ numberField | numberformat(',.2r') }} # grouped thousands with two significant digits, 4200 -> "4,200"
code(language: String)
Uses prism.js to return an HTML representation of the highlighted code. Takes an optional language string. You will need to manually include the corresponding CSS in your project.{{ codeField | code('javascript') }}
image(params: Object)
Returns an imgix ready url. Takes an object of keys and values for any imgix filter https://docs.imgix.com/apis/url{{ imageField | image({w: 320, h: 240, q: 90, crop: 'faces'}) }}
date(format: String|Object)
Formats dates using moment.js.{{ date | date('MMM Do YYYY') }} {{ date | date({format: 'MMM Do YYYY', tz: 'America/Los_Angeles') }} {{ date | date({format: 'LLL', tz: 'America/Los_Angeles', locale: 'fr') }}
format
can be either a format string or an object where you can specify a format and override the default timezone and locale (configured intsg.yml
).
If you're using JetBrains we recommend using the JS GraphQL plugin. This plugin allows for real time validation of your queries against the schema you define in TS though modeling
If we can make your life easier we want to hear from you at [email protected]