CLI tools #261
No reviewers
Labels
No labels
A: API
A: Backend
A: Federation
A: Front-End
A: I18N
A: Meta
A: Security
Build
C: Bug
C: Discussion
C: Enhancement
C: Feature
Compatibility
Dependency
Design
Documentation
Good first issue
Help welcome
Mobile
Rendering
S: Blocked
S: Duplicate
S: Incomplete
S: Instance specific
S: Invalid
S: Needs Voting/Discussion
S: Ready for review
Suggestion
S: Voted on Loomio
S: Wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Plume/Plume#261
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "setup-tools"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Example usage:
Fix #260
Looks good to me! I'll let you know if I have any issue next time I upgrade the instance using Docker :)
is plm supposed to only support Pg?
shouldn't this be database agnostic now?
Oops, forgot it! 😁
Fixed
Will also fix #157 #89 and #209
default license has changed!
@ -0,0 +20,4 @@
- `--domain`, `-d`: the domain name on which your instance will be available.
- `--name`, `-n`: The name of your instance. It will be displayed on the homepage.
- `--default-license`, `-l`: the license to use for articles written on this instance, if no other license is explicitely specified. Optional, defaults to CC-0.
this is not correct anymore
@ -133,44 +133,73 @@ This command may be useful if you decided to use a separate database server.
## Starting Plume
We should have fixed the info on how to compile Plume with sqlite in #226, why DM i only thinking of this now?
@ -0,0 +46,4 @@
.unwrap_or_else(|| env::var("BASE_URL")
.unwrap_or_else(|_| super::ask_for("Domain name")));
let name = args.value_of("name").map(String::from).unwrap_or_else(|| super::ask_for("Instance name"));
let license = args.value_of("default-license").map(String::from).unwrap_or(String::from("CC-0"));
we've decided to change the default license
we have forgotten to fix up the compile / installation instructions after/with #226
@igalic yes, I thought about it a few minutes ago too. I will update them right now.
@ -0,0 +20,4 @@
- `--domain`, `-d`: the domain name on which your instance will be available.
- `--name`, `-n`: The name of your instance. It will be displayed on the homepage.
- `--default-license`, `-l`: the license to use for articles written on this instance, if no other license is explicitely specified. Optional, defaults to CC-0.
Yes, but I will change everything in the same PR, so for now I used CC-0.