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: 1 addition & 1 deletion .github/workflows/create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Run eigenx app create
run: |
cd /tmp
eigenx app create --disable-telemetry my-awesome-app ts
eigenx app create --disable-telemetry my-awesome-app ts minimal

- name: Verify app project created
run: |
Expand Down
11 changes: 11 additions & 0 deletions config/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ temp_external/

# Environment
.env
.env.*
!.env.example

# Language-specific build outputs
# Node.js
Expand All @@ -40,6 +42,7 @@ yarn-error.log*
*.tgz
dist/
build/
coverage/

# Python
__pycache__/
Expand All @@ -65,6 +68,11 @@ wheels/
.tox/
.coverage
.pytest_cache/
.mypy_cache/
.ruff_cache/
.venv/
env/
venv/

# Rust
target/
Expand All @@ -73,3 +81,6 @@ Cargo.lock
# Go
*.test
*.prof

# Misc
*.log
3 changes: 0 additions & 3 deletions config/config_embeds.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ package config

import _ "embed"

//go:embed templates.yaml
var TemplatesYaml string

//go:embed .gitignore
var GitIgnore string

Expand Down
9 changes: 0 additions & 9 deletions config/templates.yaml

This file was deleted.

Loading
Loading