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
- Host: GitHub
- URL: https://github.com/alchemycms/alchemy-cms.com
- Owner: AlchemyCMS
- Created: 2016-11-17T17:04:31.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-05-16T19:41:50.000Z (about 2 years ago)
- Last Synced: 2024-05-21T04:10:55.412Z (about 2 years ago)
- Language: SCSS
- Size: 2.97 MB
- Stars: 2
- Watchers: 6
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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.