All Projects → EasyEngine → site-command

EasyEngine / site-command

Licence: other
Performs basic site functions in easyengine

Programming Languages

PHP
23972 projects - #3 most used programming language
Mustache
554 projects
Gherkin
971 projects

Projects that are alternatives of or similar to site-command

portfolio-react
OpenSource Portfolio Website. feel free to fork this repo
Stars: ✭ 64 (+357.14%)
Mutual labels:  hacktoberfest2020
Online-Movie-Ticket-Booking-Script-Free
Open source Online Movie Ticket Booking Script (Theatre booking system) is a website to provide the customers facility to book tickets for a movie online and to gather information about the movies and theaters.
Stars: ✭ 35 (+150%)
Mutual labels:  hacktoberfest2020
api
✏️ Free open source Application Programming Interface API for OhMyForm ⛺
Stars: ✭ 50 (+257.14%)
Mutual labels:  hacktoberfest2020
resources api
Flask API for programming and cyber security learning resources
Stars: ✭ 63 (+350%)
Mutual labels:  hacktoberfest2020
Hactoberfest-2021
Make your first PR! ~ A beginner friendly repository made specifically for open source beginners. Add your profile, a blog or any program under any language (it can be anything from a hello-world program to a complex data structure algorithm) or update the existing one. Just make sure to add the file under the correct directory. Happy hacking!
Stars: ✭ 134 (+857.14%)
Mutual labels:  hacktoberfest2020
WinDev-Utility
A utility for windows developers
Stars: ✭ 17 (+21.43%)
Mutual labels:  hacktoberfest2020
COVID-19-Resources
Resources for Covid-19
Stars: ✭ 25 (+78.57%)
Mutual labels:  hacktoberfest2020
servable
"simple" observable implementation based off RxJS & kefir Docs
Stars: ✭ 14 (+0%)
Mutual labels:  hacktoberfest2020
Android-PDF
Create PDF in Android using iText
Stars: ✭ 53 (+278.57%)
Mutual labels:  hacktoberfest2020
stashbox
Your personal Internet Archive
Stars: ✭ 42 (+200%)
Mutual labels:  hacktoberfest2020
RiddlesWorld
Hacktoberfest | Mobile app for riddles 😜
Stars: ✭ 13 (-7.14%)
Mutual labels:  hacktoberfest2020
hacktoberfest-flutter
An app to find repositories on Github and to view the various contributors to said repos.
Stars: ✭ 25 (+78.57%)
Mutual labels:  hacktoberfest2020
open source start
Go through the readme... fork ....add....send a pull request .... get yourself in the contribution list...Plant the tree
Stars: ✭ 10 (-28.57%)
Mutual labels:  hacktoberfest2020
HBD
🎂 Coder's way of wishing Happy Birthday! 🍰 🎊 🎉 🎈
Stars: ✭ 109 (+678.57%)
Mutual labels:  hacktoberfest2020
webdrivermanager
Python module to facilitate downloading and deploying WebDriver binaries for Chrome, Firefox, Opera & Edge
Stars: ✭ 94 (+571.43%)
Mutual labels:  hacktoberfest2020
ADLES
Automated Deployment of Lab Environments System (ADLES)
Stars: ✭ 28 (+100%)
Mutual labels:  hacktoberfest2020
leviosajs
This CLI helps you create react applications and components faster!
Stars: ✭ 26 (+85.71%)
Mutual labels:  hacktoberfest2020
fullscreen-card
Make your Home Assistant browser fullscreen with one tap.
Stars: ✭ 23 (+64.29%)
Mutual labels:  hacktoberfest2020
DevHelpBox
we are creating this community so that other developers can get benefits of it.
Stars: ✭ 35 (+150%)
Mutual labels:  hacktoberfest2020
emojidiv
Draw emojis with a single div.
Stars: ✭ 25 (+78.57%)
Mutual labels:  hacktoberfest2020

easyengine/site-command

Build Status

Quick links: Using | Contributing | Support

Using

This package implements the following commands:

ee site create --type=html

Runs the standard HTML site installation.

ee site create --type=html <site-name> [--ssl=<value>] [--wildcard] [--type=<type>] [--skip-status-check]

OPTIONS

<site-name>
	Name of website.

[--ssl=<value>]
	Enables ssl via letsencrypt certificate.

[--wildcard]
	Gets wildcard SSL .

[--type=<type>]
	Type of the site to be created. Values: html,php,wp etc.

[--skip-status-check]
	Skips site status check.

EXAMPLES

# Create html site
$ ee site create example.com

# Create html site with ssl from letsencrypt
$ ee site create example.com --ssl=le

# Create html site with wildcard ssl
$ ee site create example.com --ssl=le --wildcard

# Create html site with self signed certificate
$ ee site create example.com --ssl=self

ee site delete

Deletes a website.

ee site delete <site-name> [--yes]

OPTIONS

<site-name>
	Name of website to be deleted.

[--yes]
	Do not prompt for confirmation.

EXAMPLES

# Delete site
$ ee site delete example.com

ee site update

Supports updating and upgrading site.

ee site update [<site-name>] [--ssl=<ssl>] [--wildcard]
[<site-name>]
	Name of the site.

[--ssl=<ssl>]
	Enable ssl on site

[--wildcard]
	Enable wildcard SSL on site.

EXAMPLES

# Add SSL to non-ssl site
$ ee site update example.com --ssl=le

# Add SSL to non-ssl site
$ ee site update example.com --ssl=le --wildcard

# Add self-signed SSL to non-ssl site
$ ee site update example.com --ssl=self

ee site create --type=html

Runs the standard HTML site installation.

ee site create --type=html <site-name> [--ssl=<value>] [--wildcard] [--type=<type>] [--skip-status-check]

OPTIONS

<site-name>
	Name of website.

[--ssl=<value>]
	Enables ssl via letsencrypt certificate.

[--wildcard]
	Gets wildcard SSL .

[--type=<type>]
	Type of the site to be created. Values: html,php,wp etc.

[--skip-status-check]
	Skips site status check.

EXAMPLES

# Create html site
$ ee site create example.com

# Create html site with ssl from letsencrypt
$ ee site create example.com --ssl=le

# Create html site with wildcard ssl
$ ee site create example.com --ssl=le --wildcard

# Create html site with self signed certificate
$ ee site create example.com --ssl=self

ee site enable

Enables a website. It will start the docker containers of the website if they are stopped.

ee site enable [<site-name>] [--force] [--verify]

OPTIONS

[<site-name>]
	Name of website to be enabled.

[--force]
	Force execution of site enable.

[--verify]
	Verify if required global services are working.

EXAMPLES

# Enable site
$ ee site enable example.com

# Enable site with verification of dependent global services. (Note: This takes longer time to enable the
site.)
$ ee site enable example.com --verify

# Force enable a site.
$ ee site enable example.com --force

ee site disable

Disables a website. It will stop and remove the docker containers of the website if they are running.

ee site disable [<site-name>]

OPTIONS

[<site-name>]
	Name of website to be disabled.

EXAMPLES

# Disable site
$ ee site disable example.com

ee site ssl

Verifies ssl challenge and also renews certificates(if expired).

ee site ssl <site-name> [--force]

OPTIONS

<site-name>
	Name of website.

[--force]
	Force renewal.

ee site info

Display all the relevant site information, credentials and useful links.

ee site info [<site-name>]
[<site-name>]
	Name of the website whose info is required.

EXAMPLES

# Display site info
$ ee site info example.com

ee site list

Lists the created websites.

ee site list [--enabled] [--disabled] [--format=<format>]

abstract list

[--enabled]
	List only enabled sites.

[--disabled]
	List only disabled sites.

[--format=<format>]
	Render output in a particular format.
	---
	default: table
	options:
	  - table
	  - csv
	  - yaml
	  - json
	  - count
	  - text
	---

EXAMPLES

# List all sites
$ ee site list

# List enabled sites
$ ee site list --enabled

# List disabled sites
$ ee site list --disabled

# List all sites in JSON
$ ee site list --format=json

# Count all sites
$ ee site list --format=count

ee site reload --type=html

Runs the standard HTML site installation.

ee site reload --type=html <site-name> [--ssl=<value>] [--wildcard] [--type=<type>] [--skip-status-check]

OPTIONS

<site-name>
	Name of website.

[--ssl=<value>]
	Enables ssl via letsencrypt certificate.

[--wildcard]
	Gets wildcard SSL .

[--type=<type>]
	Type of the site to be created. Values: html,php,wp etc.

[--skip-status-check]
	Skips site status check.

EXAMPLES

# Create html site
$ ee site create example.com

# Create html site with ssl from letsencrypt
$ ee site create example.com --ssl=le

# Create html site with wildcard ssl
$ ee site create example.com --ssl=le --wildcard

# Create html site with self signed certificate
$ ee site create example.com --ssl=self

ee site restart --type=html

Runs the standard HTML site installation.

ee site restart --type=html <site-name> [--ssl=<value>] [--wildcard] [--type=<type>] [--skip-status-check]

OPTIONS

<site-name>
	Name of website.

[--ssl=<value>]
	Enables ssl via letsencrypt certificate.

[--wildcard]
	Gets wildcard SSL .

[--type=<type>]
	Type of the site to be created. Values: html,php,wp etc.

[--skip-status-check]
	Skips site status check.

EXAMPLES

# Create html site
$ ee site create example.com

# Create html site with ssl from letsencrypt
$ ee site create example.com --ssl=le

# Create html site with wildcard ssl
$ ee site create example.com --ssl=le --wildcard

# Create html site with self signed certificate
$ ee site create example.com --ssl=self

ee site share

Share a site online using ngrok.

ee site share <site-name> [--disable] [--refresh] [--token=<token>]

OPTIONS

<site-name>
	Name of website.

[--disable]
	Take online link down.

[--refresh]
	Refresh site share if link has expired.

[--token=<token>]
	ngrok token.

EXAMPLES

# Share a site online
$ ee site share example.com

# Refresh shareed link if expired
$ ee site share example.com --refresh

# Disable online link
$ ee site share example.com --disable

ee site clean

Clears Object and Page cache for site.

ee site clean [<site-name>] [--page] [--object]

OPTIONS

[<site-name>]
	Name of website to be enabled.

[--page]
	Clear page cache.

[--object]
	Clear object cache.

EXAMPLES

# Clear Both cache type for site.
$ ee site clean example.com

# Clear Object cache for site.
$ ee site clean example.com --object

# Clear Page cache for site.
$ ee site clean example.com --page

Contributing

We appreciate you taking the initiative to contribute to this project.

Contributing isn’t limited to just code. We encourage you to contribute in the way that best fits your abilities, by writing tutorials, giving a demo at your local meetup, helping other users with their support questions, or revising our documentation.

Reporting a bug

Think you’ve found a bug? We’d love for you to help us get it fixed.

Before you create a new issue, you should search existing issues to see if there’s an existing resolution to it, or if it’s already been fixed in a newer version.

Once you’ve done a bit of searching and discovered there isn’t an open or fixed issue for your bug, please create a new issue. Include as much detail as you can, and clear steps to reproduce if possible.

Creating a pull request

Want to contribute a new feature? Please first open a new issue to discuss whether the feature is a good fit for the project.

Support

Github issues aren't for general support questions, but there are other venues you can try: https://easyengine.io/support/

This README.md is generated dynamically from the project's codebase using ee scaffold package-readme (doc). To suggest changes, please submit a pull request against the corresponding part of the codebase.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].