Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miya0001/vagrant-ckan
https://github.com/miya0001/vagrant-ckan
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/miya0001/vagrant-ckan
- Owner: miya0001
- Created: 2015-02-08T16:33:23.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-27T14:12:35.000Z (over 9 years ago)
- Last Synced: 2024-10-16T01:51:20.485Z (3 months ago)
- Language: Shell
- Size: 1.67 MB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vagrant environment for CKAN
## Getting started
```
$ git clone [email protected]:miya0001/vagrant-ckan.git
$ cd vagrant-ckan
$ vagrant up
```Then visit [http://192.168.55.10/](http://192.168.55.10/).
## Creating a sysadmin user
You have to use CKAN’s command line interface to create your first sysadmin user.
```
vagrant ssh
```CKAN commands are executed using the paster command on the server that CKAN is installed on. Before running the paster commands below, you need to make sure that your virtualenv is activated and that you're in your ckan source directory.
```
. /usr/lib/ckan/default/bin/activate
cd /usr/lib/ckan/default/src/ckan
```You have to create your first CKAN sysadmin user from the command line. For example, to create a user called seanh and make him a sysadmin:
```
paster sysadmin add seanh -c /etc/ckan/default/production.ini
```http://docs.ckan.org/en/ckan-2.2/getting-started.html#create-admin-user
## Customizing look and feel
Some simple customizations to customize the ‘look and feel’ of your CKAN site are available via the UI, at `http:///ckan-admin/config/`.
![CKAN Config Panel](https://www.evernote.com/shard/s21/sh/b4245a4f-a769-433e-8235-d05ee0156c0d/e731f862589c40101fd6d72f46704f2f/deep/0/Administration---CKAN.png)
http://docs.ckan.org/en/ckan-2.2/sysadmin-guide.html
## Install an Email Server
Install an email server to enable CKAN’s email features (such as sending traceback emails to sysadmins when crashes occur, or sending new activity email notifications to users). For example, to install the Postfix email server, do:
```
sudo apt-get install postfix
```When asked to choose a Postfix configuration, choose `Internet Site` and press return.
## More information
[Welcome to CKAN’s Documentation](http://docs.ckan.org/en/ckan-2.2/)