Add Snapcraft metadata and install/maintenance hooks #666

Scalone
RAOF scala 5 commity/ów z add-snapcraft do master 5 lat temu

@ -0,0 +1,48 @@
#!/bin/sh
db_type="$(snapctl get db.type)"
db_url="$(snapctl get db.url)"
if [ "${db_type}" = "sqlite" ]
then
if [ -n "${db_url}" ]
then
echo "sqlite backend does not use db.url key"
exit 1
fi
elif [ "${db_type}" = "postgres" ]
then
if [ -z "${db_url}" ]
then
echo "postgres backend requires db.url to be set"
exit 1
fi
elif [ -n "${db_type}" ]
then
echo "Invalid db.type: " ${db_type}
exit 1
fi
base_url="$(snapctl get base-url)"
enabled="$(snapctl get enabled)"
if [ -n ${enabled} -a \( "${enabled}" != "true" -a "${enabled}" != "false" \) ]
then
echo "Invalid 'enabled' setting: ${enabled}. Valid values are 'true' or 'false'"
exit 1
fi
if [ -n ${base_url} -a \( -z "${enabled}" -o "${enabled}" = "false" \) ]
then
echo "All required configuration available."
echo "Plume can now be enabled by setting 'snap set plume enabled=true' and restarting the service \
with 'snap restart plume'"
fi
if [ "${enabled}" = "true" -a ! -e ${SNAP_COMMON}/initial-migrations-run ]
then
cd ${SNAP}
exec ./set-environment bin/plm migration run --path ${SNAP_DATA}
touch ${SNAP_COMMON}/initial-migrations-run
fi
exit 0

@ -0,0 +1,3 @@
#!/bin/sh
openssl rand -base64 32 > ${SNAP_COMMON}/rocket-secret-key

@ -0,0 +1,11 @@
#!/bin/sh
db_type=$(snapctl get db.type)
if [ -z "${db_type}" ]
then
exit 0
fi
cd ${SNAP}
exec ./set-environment bin/plm migration run --path ${SNAP_DATA}

@ -0,0 +1,29 @@
#!/bin/sh
enabled="$(snapctl get enabled)"
if [ -z "${enabled}" -o "${enabled}" != "true" ]
then
echo "Plume not yet enabled"
exit 1
fi
export BASE_URL="$(snapctl get base-url)"
database_type="$(snapctl get db.type)"
if [ z"${database_type}" = z"sqlite" ]
then
export DATABASE_URL=${SNAP_DATA}/plume.db
export MIGRATION_DIR=migrations/sqlite
else
# Must be postgres, so must have set db.url
export DATABASE_URL="$(snapctl get db.url)"
export MIGRATION_DIRECTORY=migrations/postgres
fi
ROCKET_ADDRESS="$(snapctl get listen.address)"
ROCKET_PORT="$(snapctl get listen.port)"
export ROCKET_SECRET_KEY="$(cat ${SNAP_COMMON}/rocket-secret-key)"
export SEARCH_INDEX="${SNAP_DATA}/search_index"
cd ${SNAP}
exec $@

@ -0,0 +1,50 @@
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
name: plume
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
base: core18
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
version: '0.3.0' # just for humans, typically '1.2+git' or '1.3.2'
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
summary: Multi-user blogging platform, federated over ActivityPub
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
description: |
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
Plume is a federated blogging platform, featuring:
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
* A blog-centric approach: you can create as much blogs as you want with your account, to keep your different publications separated.
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
* Media management: you can upload pictures to illustrate your articles, but also audio files if you host a podcast, and manage them all from Plume.
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
* Federation: Plume is part of a network of interconnected websites called the Fediverse. Each of these websites (often called instances) have their own rules and thematics, but they can all communicate with each other.
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
* Collaborative writing: invite other people to your blogs, and write articles together.
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
grade: devel # must be 'stable' to release into candidate/stable channels
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
confinement: strict
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
apps:
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
plume:
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
daemon: simple
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
command: set-environment bin/plume
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
plugs:
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
- network
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
- network-bind
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
plm:
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
command: set-environment bin/plm
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
parts:
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
plume:
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
plugin: rust
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
source: .
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
rust-revision: nightly-2019-03-23
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
build-packages:
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
- libssl-dev
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
- pkg-config
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
- libsqlite3-dev
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
- gettext
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
after:
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
- cargo-web
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
override-build: |
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
export PATH=$PATH:$SNAPCRAFT_PROJECT_DIR/../.cargo/bin
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
cargo web deploy -p plume-front --release
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
cargo install --force --no-default-features --features sqlite --path . --root ${SNAPCRAFT_PART_INSTALL}
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
cargo install --force --no-default-features --features sqlite --path plume-cli --root ${SNAPCRAFT_PART_INSTALL}
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
cp -a assets migrations static target translations ${SNAPCRAFT_PART_INSTALL}
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
cp snap/local/set-environment ${SNAPCRAFT_PART_INSTALL}
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
stage-packages:
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
- openssl
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
- libsqlite3-0
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
cargo-web:
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
plugin: rust
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
source: https://github.com/koute/cargo-web.git
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
source-tag: 0.6.26
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

The compile plume instructions say to install diesel_cli. Is that not necessary?

The [compile plume](https://docs.joinplu.me/installation/with/source-code) instructions say to install diesel_cli. Is that not necessary?
igalic skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

It is for the 0.3.0 tag, but not for master (we have plm migration run now).

It is for the 0.3.0 tag, but not for master (we have `plm migration run` now).
elegaanz skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.

Maybe you are already aware of that, but just to have reminder: this description should probably be updated.
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Removed

Removed
RAOF skomentował(-a) 5 lat temu (Zmigrowane z github.com)
Recenzja

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
Ładowanie…
Anuluj
Zapisz