Add Snapcraft metadata and install/maintenance hooks #666

Слито
RAOF слито 5 коммит(ов) из add-snapcraft в master 5 лет назад

48
snap/hooks/configure поставляемый

@ -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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
name: plume
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
base: core18
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
description: |
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
Plume is a federated blogging platform, featuring:
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
confinement: strict
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
apps:
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
plume:
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
daemon: simple
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
command: set-environment bin/plume
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
plugs:
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
- network
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
- network-bind
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
plm:
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
command: set-environment bin/plm
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
parts:
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
plume:
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
plugin: rust
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
source: .
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
rust-revision: nightly-2019-03-23
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
build-packages:
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
- libssl-dev
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
- pkg-config
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
- libsqlite3-dev
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
- gettext
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
after:
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
- cargo-web
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
override-build: |
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
cargo web deploy -p plume-front --release
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
stage-packages:
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
- openssl
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
- libsqlite3-0
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
cargo-web:
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
plugin: rust
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
source-tag: 0.6.26
igalic прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

what do we need / usr diesel-cli for?

what do we need / usr diesel-cli for?
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

i don't think it's necessary.

@fdb-hiroshima?

*i* don't think it's necessary. @fdb-hiroshima?
elegaanz прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

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 прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Removed

Removed
RAOF прокомментировал(а) 5 лет назад (Перенесено из github.com)
Рецензия

Updated. Please give the verbiage a once-over!

Updated. Please give the verbiage a once-over!
Загрузка…
Отмена
Сохранить