nano_press

(★ 78)

Nano Press automates your Frappe/ERPNext deployment from zero to production. Connect your server, pick your version, add official or custom GitHub apps, set your domain, and launch — all in one smooth workflow. Built for quick proof-of-concepts, but powerful enough for real-world use.

File Explorer

  • .editorconfig
  • .eslintrc
  • .gitignore
  • .pre-commit-config.yaml
  • biome.json
  • commitlint.config.js
  • license.txt
  • package-lock.json
  • package.json
  • pyproject.toml
  • README.md
  • yarn.lock

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

eslint

View Details ▼

A pluggable linting utility for JavaScript and JSX.

eslint --init

Create the ESLint configuration file:

eslint {{path/to/file1.js path/to/file2.js ...}}

Lint one or more files:

eslint --fix

Fix lint issues:

🔍

pre-commit

View Details ▼

Create Git hooks that run before commits.

pre-commit install

Install pre-commit into your Git hooks:

pre-commit run

Run pre-commit hooks on all staged files:

pre-commit run --all-files

Run pre-commit hooks on all files, staged or unstaged:

🔍

prettier

View Details ▼

An opinionated code formatter for JavaScript, JSON, CSS, YAML, and more.

prettier {{path/to/file}}

Format a file and print the result to `stdout`:

prettier --check {{path/to/file}}

Check if a specific file has been formatted:

prettier --config {{path/to/config_file}} {{path/to/file}}

Run with a specific configuration file:

🔍

ruff

View Details ▼

An extremely fast Python linter and code formatter, written in Rust.
See also: `black`.

tldr ruff check

View documentation for the Ruff linter:

tldr ruff format

View documentation for the Ruff code formatter:

// repository documentation