Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

yescode

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yescode

  • 22.05.24
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

yescode

A full stack ruby mvc web framework

Learning

Check out the examples/ folder for some ideas on how to get started

Quickstart without docker

Install the gem

gem install yescode

Generate a new app and get in there

yescode new todos
cd todos

Install the dependencies

bundle install

Set the environment from the .env file

export $(cat .env | xargs)

Start the server

bundle exec tipi --listen localhost:9292 config.ru

Test it out with curl or you can just visit http://localhost:9292 in your browser

curl localhost:9292

Quickstart with docker

Install the gem

gem install yescode

Generate a new app and get in there

yescode new todos
cd todos

Build a docker image. The Dockerfile installs hivemind and watchexec and will restart the server on file changes using Procfile.dev

docker build -t todos .

Run the container

docker run --rm -it -v $(pwd):/home/app --env-file=.env -p 9292:9292 --name "todos" todos hivemind Procfile.dev

FAQs

Package last updated on 25 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc