Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Dockerfile

Build

Run the command from the repo root.

docker build -t functionalscript ./docker

Run

docker run -it functionalscript

Or clean version w/o network:

docker run --rm -it --network none functionalscript

Container Commands

  • cargo test
  • npm test
  • deno task test
  • bun test

See CONTRIBUTING.md for the full list of equivalent ways to run the FunctionalScript test suite.

Codex Setup

rustup component add clippy
rustup component add rustfmt

# Install Node.js dependencies.
npm ci

# Install Rust dependencies.
cargo fetch

rustup show
node -v