Skip to content

Commit b636c1c

Browse files
authored
Merge pull request #525 from writer/dev
chore: Merge for release
2 parents 2f57da9 + 95df81a commit b636c1c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "writer"
7-
version = "0.7.0rc1"
7+
version = "0.7.0rc2"
88
description = "An open-source, Python framework for building feature-rich apps that are fully integrated with the Writer platform."
99
authors = ["Writer, Inc."]
1010
readme = "README.md"

src/writer/command_line.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def main():
2020

2121
@main.command()
2222
@click.option('--host', default="127.0.0.1", help="Host to run the app on")
23-
@click.option('--port', default=5000, help="Port to run the app on")
23+
@click.option('--port', default=3005, help="Port to run the app on")
2424
@click.argument('path')
2525
def run(path, host, port):
2626
"""Run the app from PATH folder in run mode."""
@@ -34,7 +34,7 @@ def run(path, host, port):
3434

3535
@main.command()
3636
@click.option('--host', default="127.0.0.1", help="Host to run the app on")
37-
@click.option('--port', default=5000, help="Port to run the app on")
37+
@click.option('--port', default=3006, help="Port to run the app on")
3838
@click.option('--enable-remote-edit', help="Set this flag to allow non-local requests in edit mode.", is_flag=True)
3939
@click.option('--enable-server-setup', help="Set this flag to enable server setup hook in edit mode.", is_flag=True)
4040
@click.argument('path')
@@ -63,7 +63,7 @@ def create(path, template):
6363

6464
@main.command()
6565
@click.option('--host', default="127.0.0.1", help="Host to run the app on")
66-
@click.option('--port', default=5000, help="Port to run the app on")
66+
@click.option('--port', default=3006, help="Port to run the app on")
6767
@click.option('--enable-remote-edit', help="Set this flag to allow non-local requests in edit mode.", is_flag=True)
6868
def hello(port, host, enable_remote_edit):
6969
"""Create and run an onboarding 'Hello' app."""

0 commit comments

Comments
 (0)