Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ directus-cms/shared-code
**/.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

# ignore all locally built extension artifacts
extensions-src/**/dist
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ node_modules
/.pnp
.pnp.js
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# compiled code
build
Expand Down
16 changes: 8 additions & 8 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,19 @@ website/
### Nuxt App (run from `nuxt-app/`)

```bash
yarn run dev # Development server
yarn run build # Production build
yarn run generate # Static site generation
yarn run eslint # Lint with auto-fix
yarn run prettier # Format code
npm run dev # Development server
npm run build # Production build
npm run generate # Static site generation
npm run eslint # Lint with auto-fix
npm run prettier # Format code
```

### Directus CMS (run from `directus-cms/`)

```bash
yarn run start # Start Directus server
yarn run build # Build extensions
yarn run migrate:db # Database migrations
npm run start # Start Directus server
npm run build # Build extensions
npm run migrate:db # Database migrations
```

### Testing
Expand Down
5,794 changes: 0 additions & 5,794 deletions directus-cms/extensions/directus-extension-programmierbar-bundle/yarn.lock

This file was deleted.

2 changes: 1 addition & 1 deletion directus-cms/run-container.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

echo "Use this command to verify the built docker container"
echo "For local development you can also use: 'yarn run start'"
echo "For local development you can also use: 'npm run start'"

# Check if the Docker image "programmierbar/cms" is locally available
if [[ "$(docker images -q registry.digitalocean.com/programmierbar/cms 2> /dev/null)" == "" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion directus-cms/utils/setup-ai-prompts.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ async function main() {
console.log('\nSetup complete!')
console.log('\nNext steps:')
console.log('1. Open Directus and review/customize the AI prompts in "AI Prompts"')
console.log('2. Rebuild the Directus extensions: cd extensions/directus-extension-programmierbar-bundle && yarn build')
console.log('2. Rebuild the Directus extensions: cd extensions/directus-extension-programmierbar-bundle && npm run build')
console.log('\nNote: Changes to prompts take effect immediately - no rebuild required.')
} catch (err) {
console.error('Error during setup:', err)
Expand Down
2 changes: 1 addition & 1 deletion directus-cms/utils/setup-email-templates.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ async function main() {
console.log('\nNext steps:')
console.log('1. Open Directus and configure the Heise contact email in "Automation Settings"')
console.log('2. Review and customize the email templates in "Email Templates"')
console.log('3. Rebuild the Directus extensions: cd extensions/directus-extension-programmierbar-bundle && yarn build')
console.log('3. Rebuild the Directus extensions: cd extensions/directus-extension-programmierbar-bundle && npm run build')
} catch (err) {
console.error('Error during setup:', err)
process.exit(1)
Expand Down
Loading