Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Scripted deployment and management of clld web apps.
This package provides the appconfig
command line utility as well as
fabric tasks
which can be used in fabfiles for managing individual apps.
To show a help message run
appconfig --help
The appconfig
command needs a configuration directory containing the global
configuration file (apps.ini
) and the config scripts all managed apps.
I.e. the config directory (here apps/
) should have the following structure:
apps
├── apps.ini
├── README.md
├── abvd
│ ├── fabfile.py
│ ├── README.md
│ └── requirements.txt
├── acc
│ ├── fabfile.py
│ ├── README.md
│ └── requirements.txt
.
.
.
The config discovery is done in the following order:
--config
/ -c
APPCONFIG_DIR
environment variable./
) is assumed to be the config
directorySo both of the following commands do the same thing:
appconfig --config ./path/to/appconfig/apps/ ls
env APPCONFIG_DIR=./path/to/appconfig/apps/ appconfig ls
For every app should provide a subdirectory of the config directory, which
contains a fabfile.py
with the following minimal structure:
from clldappconfig.tasks import *
init()
Inside the directory containing the fabfile you can run fab -l
to list all
available tasks for deployment, managing databases etc.
Config discovery for the fabfiles works as follows:
APPCONFIG_DIR
environment variable../
) is assumed to
be the config directoryIf you use the config directory structure as described above, you can rely on
the default behavior and usually don't need to set the APPCONFIG_DIR
environment variable.
apps.ini
FAQs
Remote control for DLCE apps
We found that clldappconfig demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.