An open API service indexing awesome lists of open source software.

https://github.com/alchemycms/alchemy-cms.com

The alchemy-cms.com Alchemy site
https://github.com/alchemycms/alchemy-cms.com

Last synced: 8 months ago
JSON representation

The alchemy-cms.com Alchemy site

Awesome Lists containing this project

README

          

# [AlchemyCMS Homepage](alchemy-cms.com)

### Prerequisites/Requirements

* Ruby 2.5
* Imagemagick
* PostgreSQL >= 9

### Setup local development

**Configuring the database**

```
$ cp config/database.yml.example config/database.yml
$ cp .env.example .env
```

and adjust to your local environment

### Setup database

```
$ mysql -u root alchemy-cms.com < db/dump.sql
```

### Start development server

```
$ bin/rails server
```

### Admin login

```
login: admin
password: test123
```

### Provision server

Make sure you have Ansible installed. On a mac:

$ brew install ansible

Provisioning is as easy as:

$ ansible-playbook -i hosts playbooks/homepage.yml --ask-vault-pass

### Deployment

Deployment happens via Capistrano.

If you have access to the server via your ssh key a simple:

$ bundle exec cap deploy DEPLOY_USER= SSH_PORT=

is all you need.