https://github.com/kitconcept/kitconcept.plonepip
https://github.com/kitconcept/kitconcept.plonepip
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kitconcept/kitconcept.plonepip
- Owner: kitconcept
- Created: 2018-03-17T22:27:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-04-07T21:37:28.000Z (about 5 years ago)
- Last Synced: 2025-03-09T23:32:08.923Z (over 1 year ago)
- Language: Dockerfile
- Size: 41 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Plone installed via pip
Inspired by Asko Soukka's
https://github.com/datakurre/plone-pip
# Installation
```
$ virtualenv .
$ ./bin/pip install -U pip setuptools
```
```
$ ./bin/pip install -r requirements.txt -r requirements.5.1.txt
```
Init ZODB with admin:admin user
```
$ ./bin/plonecli instance -C zope.conf run admin.py
```
Create a new site programmatically
```
$ ./bin/plonecli instance -C zope.conf run createsite.py
```
# Serving Plone
```
$ ./bin/plonecli instance -C zope.conf fg
```
# Installing existing add-on
$ ./bin/pip install collective.easyform
$ ./bin/pip install plone.app.imagecropping
# Developing a new add-on
```
$ source env/bin/activate
$ plonecli create addon my.addon
$ cd my.addon
$ python setup.py develop
```
# Docker image
Inspired by Erico Andrei and based on https://github.com/ericof/docker-plone
It has installed the last plone.restapi version ready to use.
# docker build .