Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/empress/create-empress-blog-template
Utility designed to help get started quickly with an Ember Ghost Template
https://github.com/empress/create-empress-blog-template
Last synced: 2 months ago
JSON representation
Utility designed to help get started quickly with an Ember Ghost Template
- Host: GitHub
- URL: https://github.com/empress/create-empress-blog-template
- Owner: empress
- Created: 2018-11-22T15:13:04.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-09T20:21:59.000Z (over 5 years ago)
- Last Synced: 2024-10-13T21:33:13.681Z (2 months ago)
- Language: JavaScript
- Size: 561 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
create-empress-blog-template
==============================================================================This is a utility to get you started in creating a new [empress-blog](https://github.com/empress/empress-blog) template. It generates an Ember Addon that is set up with a **very** basic template. To see the initial output you can go to https://create-empress-blog-template.netlify.com/
Once you have this running locally it is time for you to jump in and start editing the templates and styles so that your template looks super awesome! 💪 If you create an template that other people can use please [ping me on twitter](https://twitter.com/real_ate) and I'll add it to a list of available templates
## Requirements
You should make sure that you have `npm` version 6.1 or later:```sh
npm -v
# 6.4.1
```If your installed version is less than `6.1.0` then you need to update using the [official update documentation](https://docs.npmjs.com/try-the-latest-stable-version-of-npm). And as a bonus you might get a [massive speed bump](https://blog.npmjs.org/post/173240511455/the-new-npm-cli-a-year-in-review-or-what-you) at the same time 🎉
## Usage
```sh
npm init empress-blog-template
```This will create a new empress-blog template called empress-blog--template in the current directory. You should then be able to cd into the directory and start the example app.
```sh
cd empress-blog-example-template
npm start
```Now if you visit http://localhost:4200 you will see the basic template. You should then be able to edit the `hbs` files in `app/templates` and the styles in `addon/styles/addon.css` until you're happy with the new design. The example app will live-reload on http://localhost:4200 as you make changes to the templates and the styles.
## Advanced
An empress-blog template is no different from a regular Ember Addon, save for the location of the template files. You can extend this addon by installing as many other addons as you may need, for example if you would like to use [ember-cli-sass](https://github.com/aexmachina/ember-cli-sass) you can.**Important note:** you must follow whatever instructions that an addon has to install into another addon. `ember-cli-sass` has extra documentation that you would need to follow to make sure it works https://github.com/aexmachina/ember-cli-sass#addon-usage
License
------------------------------------------------------------------------------This project is licensed under the [MIT License](LICENSE).