Skip to content

StrawberryFields

Setup

$ command -v bash curl docker git openssl sed
$ command -v bash curl docker git openssl sed | wc -l
6

https://gitlab.com/acefed/strawberryfields-express

$ curl -fsSL https://gitlab.com/acefed/strawberryfields-express/-/raw/master/install.sh | PORT=8080 bash -s -- https://www.example.com
$ curl https://www.example.com/
StrawberryFields Express

https://gitlab.com/acefed/strawberryfields-fastify

$ curl -fsSL https://gitlab.com/acefed/strawberryfields-fastify/-/raw/master/install.sh | PORT=8080 bash -s -- https://www.example.com
$ curl https://www.example.com/
StrawberryFields Fastify

https://gitlab.com/acefed/strawberryfields-flask

$ curl -fsSL https://gitlab.com/acefed/strawberryfields-flask/-/raw/master/install.sh | PORT=8080 bash -s -- https://www.example.com
$ curl https://www.example.com/
StrawberryFields Flask

https://gitlab.com/acefed/strawberryfields-fastapi

$ curl -fsSL https://gitlab.com/acefed/strawberryfields-fastapi/-/raw/master/install.sh | PORT=8080 bash -s -- https://www.example.com
$ curl https://www.example.com/
StrawberryFields FastAPI

https://gitlab.com/acefed/strawberryfields-lumen

$ curl -fsSL https://gitlab.com/acefed/strawberryfields-lumen/-/raw/master/install.sh | PORT=8080 bash -s -- https://www.example.com
$ curl https://www.example.com/
StrawberryFields Lumen

https://gitlab.com/acefed/strawberryfields-laravel

$ curl -fsSL https://gitlab.com/acefed/strawberryfields-laravel/-/raw/master/install.sh | PORT=8080 bash -s -- https://www.example.com
$ curl https://www.example.com/
StrawberryFields Laravel

https://gitlab.com/acefed/strawberryfields-sinatra

$ curl -fsSL https://gitlab.com/acefed/strawberryfields-sinatra/-/raw/master/install.sh | PORT=8080 bash -s -- https://www.example.com
$ curl https://www.example.com/
StrawberryFields Sinatra

https://gitlab.com/acefed/strawberryfields-rails

$ curl -fsSL https://gitlab.com/acefed/strawberryfields-rails/-/raw/master/install.sh | PORT=8080 bash -s -- https://www.example.com
$ curl https://www.example.com/
StrawberryFields Rails

https://gitlab.com/acefed/strawberryfields-gin

$ curl -fsSL https://gitlab.com/acefed/strawberryfields-gin/-/raw/master/install.sh | PORT=8080 bash -s -- https://www.example.com
$ curl https://www.example.com/
StrawberryFields Gin

https://gitlab.com/acefed/strawberryfields-django

$ curl -fsSL https://gitlab.com/acefed/strawberryfields-django/-/raw/master/install.sh | PORT=8080 bash -s -- https://www.example.com
$ curl https://www.example.com/
StrawberryFields Django

https://gitlab.com/acefed/strawberryfields-spark

$ curl -fsSL https://gitlab.com/acefed/strawberryfields-spark/-/raw/main/install.sh | PORT=8080 bash -s -- https://www.example.com
$ curl https://www.example.com/
StrawberryFields Spark

https://gitlab.com/acefed/strawberryfields-spring

$ curl -fsSL https://gitlab.com/acefed/strawberryfields-spring/-/raw/main/install.sh | PORT=8080 bash -s -- https://www.example.com
$ curl https://www.example.com/
StrawberryFields Spring

https://gitlab.com/acefed/strawberryfields-ktor

$ curl -fsSL https://gitlab.com/acefed/strawberryfields-ktor/-/raw/main/install.sh | PORT=8080 bash -s -- https://www.example.com
$ curl https://www.example.com/
StrawberryFields Ktor

https://gitlab.com/acefed/strawberryfields-play

$ curl -fsSL https://gitlab.com/acefed/strawberryfields-play/-/raw/main/install.sh | PORT=8080 bash -s -- https://www.example.com
$ curl https://www.example.com/
StrawberryFields Play

https://gitlab.com/acefed/strawberryfields-dotnet

$ curl -fsSL https://gitlab.com/acefed/strawberryfields-dotnet/-/raw/main/install.sh | PORT=8080 bash -s -- https://www.example.com
$ curl https://www.example.com/
StrawberryFields .NET

https://gitlab.com/acefed/strawberryfields-actix

$ curl -fsSL https://gitlab.com/acefed/strawberryfields-actix/-/raw/main/install.sh | PORT=8080 bash -s -- https://www.example.com
$ curl https://www.example.com/
StrawberryFields Actix

Command

$ curl -H 'Content-Type: application/json' -d @send.json "https://www.example.com/s/$(tail -1 secret.txt)/u/a"

https://zenn.dev/tkithrta/articles/78b203b30f689f
https://zenn.dev/tkithrta/articles/fb96667e0b19f6

プログラミング言語、ランタイム、パッケージマネージャーは以下のリポジトリを参考にしています。

kamranahmedse/developer-roadmap
devcontainers/images
gitpod-io/workspace-images

以下のパッケージは将来のバージョン用に予約されています。

  • JavaScript

HTML js-yaml pg redis bull

  • Python

Django Template Jinja2 pyyaml psycopg2 redis celery

  • PHP

Laravel Blade symfony/yaml predis/predis

  • Ruby

eRuby pg redis sidekiq

  • Go

template yaml jackc/pgx go-redis/redis RichardKnop/machinery

  • Java

org.thymeleaf/thymeleaf org.yaml/snakeyaml org.postgresql/postgresql redis.clients/jedis
io.lettuce/lettuce-core

  • Kotlin

org.thymeleaf/thymeleaf

  • Scala

com.typesafe.play/sbt-twirl

  • C#

Razor

  • Rust

tera

Environment

  • env SECRET
$ echo "$(cat /proc/sys/kernel/random/uuid)$(cat /proc/sys/kernel/random/uuid)" | tr -d '-' > secret.txt
> powershell -command "${[Guid]::NewGuid().ToString('N')}${[Guid]::NewGuid().ToString('N')}" > secret.txt

.envファイルの使用を推奨します。.envファイルを使用しない場合は以下のコマンドをお試しください。

$ export SECRET="$(cat secret.txt)"
> powershell
> $env:SECRET="$(type secret.txt)"
> set /p SECRET= < secret.txt
  • env PRIVATE_KEY
$ openssl genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:4096 -out id_rsa
$ ssh-keygen -b 4096 -m PKCS8 -t rsa -N '' -f id_rsa
> ssh-keygen -b 4096 -m PKCS8 -t rsa -N "" -f id_rsa

.envファイルの使用を推奨します。.envファイルを使用しない場合は以下のコマンドをお試しください。

$ export PRIVATE_KEY="$(cat id_rsa)"
> powershell
> $env:PRIVATE_KEY="$(type id_rsa)"
> set /p PRIVATE_KEY= < id_rsa

StrawberryFields Express

Node.js 22.0 or 20.9
JavaScript ES2023
npm 10.7
Yarn 1.22
pnpm 9.5

Express 5.0

$ node -v
$ npm -v
$ yarn -v
$ pnpm -v
  • init command
$ npm i
$ bash setup.sh https://www.example.com
  • local command
  • dev command
  • prod command
$ npm start

StrawberryFields Fastify

Node.js 22.0 or 20.9
JavaScript ES2023
npm 10.7
Yarn 1.22
pnpm 9.5

Fastify 4.28

$ node -v
$ npm -v
$ yarn -v
$ pnpm -v
  • init command
$ npm i
$ bash setup.sh https://www.example.com
  • local command
  • dev command
  • prod command
$ npm start

StrawberryFields Flask

Python 3.12 or 3.11 or 3.10
pip 24.1.1
Pipenv 2024.0.1

Flask 3.0
Gunicorn 23.0
Requests 2.32

$ python -V
$ pip -V
$ pipenv --version
  • init command
$ pip install -r requirements.txt
$ bash setup.sh https://www.example.com
  • local command
$ gunicorn app:app -b 127.0.0.1:8080
$ flask run -h 127.0.0.1 -p 8080
$ python app.py
  • dev command
$ gunicorn app:app -b 0:8080
$ flask run -h 0.0.0.0 -p 8080
  • prod command
$ gunicorn app:app

StrawberryFields FastAPI

Python 3.12 or 3.11 or 3.10
pip 24.1.1
Pipenv 2024.0.1

FastAPI 0.114
Uvicorn 0.30
HTTPX 0.27

$ python -V
$ pip -V
$ pipenv --version
  • init command
$ pip install -r requirements.txt
$ bash setup.sh https://www.example.com
  • local command
$ uvicorn app:app --host 127.0.0.1 --port 8080
  • dev command
$ uvicorn app:app --host 0.0.0.0 --port 8080
  • prod command
$ uvicorn app:app

StrawberryFields Lumen(Deprecated)

Rewrite CodeIgniter 4.4.8

PHP 7.4 or 7.3
Composer 2.7

Lumen 8
Guzzle 7.9

$ php -v
$ composer -V
  • init command
$ composer i
$ bash setup.sh https://www.example.com
  • local command
$ php -S 127.0.0.1:8080 -t public public/index.php
  • dev command
$ php -S 0.0.0.0:8080 -t public public/index.php
  • prod command
$ vendor/bin/heroku-php-nginx public
  • Tips: project command
$ composer create-project laravel/lumen strawberryfields_lumen
$ composer require guzzlehttp/guzzle
$ php -r 'file_exists(".env") || copy(".env.example", ".env");'

StrawberryFields Laravel

PHP 8.3 or 8.2
Composer 2.7

Laravel 11
Guzzle 7.9

$ php -v
$ composer -V
  • init command
$ composer i
$ bash setup.sh https://www.example.com
  • local command
$ php artisan serve --host 127.0.0.1 --port 8080
  • dev command
$ php artisan serve --host 0.0.0.0 --port 8080
  • prod command
$ vendor/bin/heroku-php-nginx public
  • Tips: project command
$ composer create-project laravel/laravel strawberryfields_laravel
$ php artisan make:controller Home
$ php artisan make:controller UName
$ php artisan make:controller Inbox
$ php artisan make:controller Outbox
$ php artisan make:controller Following
$ php artisan make:controller Followers
$ php artisan make:controller SSecret
$ php artisan make:controller Webfinger
$ php -r 'file_exists(".env") || copy(".env.example", ".env");'
$ php artisan key:generate --ansi

StrawberryFields Sinatra

Ruby 3.3 or 3.2 or 3.1
gem 3.4
Bundler 2.5

Sinatra 4.0
Puma 6.4
HTTP 5.2

$ ruby -v
$ gem -v
$ bundle -v
  • init command
$ bundle install
$ bash setup.sh https://www.example.com
  • local command
$ bundle exec rackup config.ru -o 127.0.0.1 -p 8080
  • dev command
$ bundle exec rackup config.ru -o 0.0.0.0 -p 8080
  • prod command
$ bundle exec rackup config.ru

StrawberryFields Rails

Ruby 3.3 or 3.2 or 3.1
gem 3.4
Bundler 2.5

Rails 7.2
Puma 6.4
HTTP 5.2

$ ruby -v
$ gem -v
$ bundle -v
  • init command
$ bundle install
$ bash setup.sh https://www.example.com
  • local command
$ RAILS_ENV=production rails s -b 127.0.0.1 -p 8080
  • dev command
$ RAILS_ENV=production rails s -b 0.0.0.0 -p 8080
  • prod command
$ bundle exec puma -C config/puma.rb
  • Tips: project command
$ gem install rails dotenv-rails http
$ rails new strawberryfields_rails --minimal
$ rails g controller Home
$ rails g controller UName
$ rails g controller Inbox
$ rails g controller Outbox
$ rails g controller Following
$ rails g controller Followers
$ rails g controller SSecret
$ rails g controller Webfinger
$ export SECRET_KEY_BASE="$(bundle exec rake secret)"

StrawberryFields Gin

Go 1.23

Gin 1.10
Resty 2.14

$ go version
  • init command
$ go mod vendor
$ bash setup.sh https://www.example.com
  • local command
  • dev command
$ go run main.go
  • prod command
$ go build && ./strawberryfields-gin

StrawberryFields Django

Python 3.12 or 3.11 or 3.10
pip 24.1.1
Pipenv 2024.0.1

Django 5.1
Gunicorn 23.0
Requests 2.32

$ python -V
$ pip -V
$ pipenv --version
  • init command
$ pip install -r requirements.txt
$ bash setup.sh https://www.example.com
  • local command
$ python manage.py runserver 127.0.0.1:8080 --insecure
  • dev command
$ python manage.py runserver 0:8080 --insecure
  • prod command
$ gunicorn strawberryfields_django.wsgi
  • Tips: project command
$ pip install Django gunicorn python-dotenv cryptography requests
$ django-admin startproject strawberryfields_django
$ python manage.py startapp app
$ export SECRET_KEY="$(python -c \"from django.core.management import utils; print(utils.get_random_secret_key())\")"

StrawberryFields Spark(Deprecated)

Rewrite Micronaut 3.10.4

Java 8
Maven 3.9

Spark 2.9
OkHttp 4.12
GSON 2.11

$ java --version
$ mvn -v
  • init command
$ echo 'Y' | sdk i java 8.0.382.fx-zulu
$ bash setup.sh https://www.example.com
  • local command
  • dev command
  • prod command
$ sh mvnw clean compile exec:java

StrawberryFields Spring

Java 21 or 17
Gradle 8.8

Spring Boot 3.3
Jackson 2.17

$ java --version
$ gradle -v
  • init command
$ echo 'Y' | sdk i java 17.0.7.fx-zulu && sdk i springboot 3.1.1
$ bash setup.sh https://www.example.com
  • local command
  • dev command
  • prod command
$ sh gradlew bootRun

StrawberryFields Ktor

Java 8
Kotlin 1.9
Gradle 8.8

Ktor 2.3
GSON 2.11

$ java --version
$ kotlin -version
$ gradle -v
  • init command
$ echo 'Y' | sdk i java 8.0.382.fx-zulu && sdk i kotlin 1.8.20
$ bash setup.sh https://www.example.com
  • local command
  • dev command
  • prod command
$ sh gradlew run

StrawberryFields Play

Java 21 or 17
Scala 2.13
sbt 1.10

Play 3.0
Jackson 2.17

$ java --version
$ scala -version
$ sbt -V
  • init command
$ echo 'Y' | sdk i java 11.0.19.fx-zulu && sdk i scala 2.13.11 && sdk i sbt 1.7.2
$ bash setup.sh https://www.example.com
  • local command
  • dev command
  • prod command
$ sbt "run 8080"

StrawberryFields .NET

C# 12.0
.NET 8.0
MSBuild 17.11
NuGet 6.11

$ dotnet --version
$ dotnet build --version
$ dotnet nuget --version
  • init command
$ bash setup.sh https://www.example.com
  • local command
  • dev command
  • prod command
$ dotnet run

StrawberryFields Actix

Rust 1.73
Cargo 1.73

Actix Web 4
Reqwest 0.12
Serde JSON 1

$ rustc -V
$ cargo -V
  • init command
$ bash setup.sh https://www.example.com
  • local command
  • dev command
  • prod command
$ cargo run

SBOM

strawberryfields-express.spdx
strawberryfields-express.json
strawberryfields-fastify.spdx
strawberryfields-fastify.json
strawberryfields-flask.spdx
strawberryfields-flask.json
strawberryfields-fastapi.spdx
strawberryfields-fastapi.json
strawberryfields-lumen.spdx
strawberryfields-lumen.json
strawberryfields-laravel.spdx
strawberryfields-laravel.json
strawberryfields-sinatra.spdx
strawberryfields-sinatra.json
strawberryfields-rails.spdx
strawberryfields-rails.json
strawberryfields-gin.spdx
strawberryfields-gin.json
strawberryfields-django.spdx
strawberryfields-django.json
strawberryfields-spark.spdx
strawberryfields-spark.json
strawberryfields-spring.spdx
strawberryfields-spring.json
strawberryfields-ktor.spdx
strawberryfields-ktor.json
strawberryfields-play.spdx
strawberryfields-play.json
strawberryfields-dotnet.spdx
strawberryfields-dotnet.json
strawberryfields-actix.spdx
strawberryfields-actix.json

License

StrawberryFieldsはMIT Licenseです。
原文: opensource.org
日本語参考訳: licenses.opensource.jp

以下に定める条件に従い、本ソフトウェアおよび関連文書のファイル(以下「ソフトウェア」)の複製を取得するすべての人に対し、ソフトウェアを無制限に扱うことを無償で許可します。これには、ソフトウェアの複製を使用、複写、変更、結合、掲載、頒布、サブライセンス、および/または販売する権利、およびソフトウェアを提供する相手に同じことを許可する権利も無制限に含まれます。
上記の著作権表示および本許諾表示を、ソフトウェアのすべての複製または重要な部分に記載するものとします。
ソフトウェアは「現状のまま」で、明示であるか暗黙であるかを問わず、何らの保証もなく提供されます。ここでいう保証とは、商品性、特定の目的への適合性、および権利非侵害についての保証も含みますが、それに限定されるものではありません。 作者または著作権者は、契約行為、不法行為、またはそれ以外であろうと、ソフトウェアに起因または関連し、あるいはソフトウェアの使用またはその他の扱いによって生じる一切の請求、損害、その他の義務について何らの責任も負わないものとします。

StrawberryFields Expressのライセンス記載例は以下のとおりです。

StrawberryFields Express: https://gitlab.com/acefed/strawberryfields-express (MIT License)
StrawberryFields Express: https://gitlab.com/acefed/strawberryfields-express
Copyright (c) 2020 Acefed
MIT License: https://opensource.org/license/mit
[![StrawberryFields Express: https://gitlab.com/acefed/strawberryfields-express (MIT License)](data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgAgMAAAAOFJJnAAAACVBMVEUAAAD/gMAAgEDtU8VDAAAAAXRSTlMAQObYZgAAAGVJREFUGNNNy7ENwDAIRNFLkRG8DyNQ4H0yikuLKcMRnxQkxCs+qLlmDXELo24Qk1DiTIRBGJODq6FkKgklocQrEYa+5x+ZaITguT+YgFyNEBz5NEwAEkQIDuyGCbWLCMFrH8IOXpXKN9kG+N1kAAAAAElFTkSuQmCC)](https://gitlab.com/acefed/strawberryfields-express)

このような記載例の場合、

StrawberryFields Express: https://gitlab.com/acefed/strawberryfields-express

の代わりに、

StrawberryFields: https://acefed.gitlab.io/strawberryfields

を使用することができます。

https://gitlab.com/acefed
https://acefed.gitlab.io/
https://tkithrta.gitlab.io/