npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

au_directus

v10.3.2

Published

Directus v10.3.0

Downloads

27

Readme

Quantum Directus

Fork of Directus.

It contains modifications for special needs of Quantum Iskolaszövetkezet.

Running locally

1. Make sure You use the right npm version

nvm use

2. Create .env file

Place it under the /api folder!

HOST="localhost"
PORT=8055
BE_PORT=8055
API_URL="http://0.0.0.0:8055"

DB_CLIENT="pg"
DB_HOST="localhost"
DB_PORT=5432
DB_DATABASE="db3"
DB_USER="aw"
DB_PASSWORD="password"

SERVE_APP=true

KEY="..."
SECRET="..."

ADMIN_EMAIL="[email protected]"
ADMIN_PASSWORD="password"

3. Export the variables

set -o allexport; source api/.env; set +o allexport

4. Install

Installnál maradjanak az eredeti verziószámok, különben nem fogja megtalálni a local package-eke a workspace-ben!

pnpm i

5. Initialize dabatase

pnpm --filter au_directus_api cli bootstrap

6. Build app, and run the api

pnpm --filter au_directus_app build && pnpm --filter au_directus_api dev

There is no watch mode for the app, so it should be rerunned after every app changes.

Update quantum dependency manually

cp -a app/dist ../quantum_ugyvitel/node_modules/au_directus_app && \
cp -a api/dist ../quantum_ugyvitel/node_modules/au_directus_api

Publishing the npm package

1. Increase version

  1. package.json -> { "version': "1.0.x", [...] }
  2. api/package.json -> { "version': "1.0.x", [...] }
  3. app/package.json -> { "version': "1.0.x", [...] }

2. Build & publish

Replace the NPM auth token that defines the target account.

pnpm -r build && \
NODE_AUTH_TOKEN=[...] \
pnpm \
--filter au_directus_app \
--filter au_directus_api \
--filter au_directus \
publish --access=public --no-git-checks