-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b7ab10d
commit 63edba1
Showing
8 changed files
with
421 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Changelog | ||
|
||
|
||
## 1.0a1 (unreleased) | ||
|
||
- Initial release. | ||
[david-batranu] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
Contributors | ||
============ | ||
# Contributors | ||
|
||
- David Bătrânu, david.batranu@eaudeweb.ro |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
# Using the development buildout | ||
|
||
|
||
## plonecli | ||
|
||
The convenient way, use plonecli build ;) | ||
|
||
```shell | ||
plonecli build | ||
``` | ||
|
||
or with --clear if you want to clean your existing venv | ||
|
||
```shell | ||
plonecli build --clear | ||
``` | ||
|
||
Start your instance | ||
|
||
```shell | ||
plonecli serve | ||
``` | ||
|
||
|
||
## Without plonecli | ||
|
||
Create a virtualenv in the package | ||
```shell | ||
python3 -m venv venv | ||
``` | ||
|
||
or with --clear if you want to clean your existing venv | ||
```shell | ||
python3 -m venv venv --clear | ||
``` | ||
|
||
Install requirements with pip | ||
```shell | ||
`./venv/bin/pip install -r requirements.txt | ||
``` | ||
|
||
bootstrap your buildout | ||
```shell | ||
./bin/buildout bootstrap | ||
``` | ||
|
||
Run buildout | ||
```shell | ||
./bin/buildout | ||
``` | ||
|
||
Start Plone in foreground | ||
```shell | ||
./bin/instance fg | ||
``` | ||
|
||
|
||
## Running tests | ||
|
||
```shell | ||
tox | ||
``` | ||
|
||
list all tox environments:: | ||
|
||
```shell | ||
tox -l | ||
``` | ||
|
||
run a specific tox env:: | ||
|
||
```shell | ||
tox -e py312-Plone60 | ||
``` |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.