This is a simple and useful cms for meteor. Creates automatically a admin panel for your collections and gives you the ability to have key/value definitions for your site.
The dictionary is where you can save key/value definitions, allowing the admin to change things like the site logo or the content of a page.
Orion generates the full crud for your collections.
In orion you can add custom attributes like images to entities and dictionary with just a line of code.
-
orionjs:image-attribute Save images easily in the dictionary or entities, uploading them to a S3 bucket.
-
orionjs:summernote Use the powerful summernote editor. The images uploaded are saved in a S3 bucket.
-
Add one yourself It's very easy to add custom attributes to orion. You can start by forking https://atmospherejs.com/orionjs/summernote.
You can make your own admin panel. Start by forking https://atmospherejs.com/orionjs/admin.
meteor add orionjs:admin
Orion admin is styled with bootstrap. Choose the bootstrap theme or make one your one. For example, use this theme created by bootswatch
meteor add mrt:bootswatch-yeti
Users can access to orion admin. You need to create one manually
Add this code to a file in server/
if (Meteor.users.find().count() === 0) {
Accounts.createUser({
email: 'your email',
password: 'your password'
});
}
Go to the documentation and learn how to be an expert in orion
View the example blog made with orion