mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-22 19:41:53 +03:00
abe9185f48
This PR adds a devenv template based on [devenv.sh](https://devenv.sh/), this is a nice to have for devs that use nix, direnv, and devenv. It provides a quick and easy way to ensure that all packages that are needed to start up the dev environment are installed. I've initialized using devenvious, which is a @tennox creation: [source on gitlab](https://gitlab.com/txlab/dx/devenvious). I acknowledge that this "clutters" the root dir with some less common files, but they are harmless for those that don't use the tools, and helpful for those that do... a bit like .vscode and .idea folders. --------- Co-authored-by: Félix Malfait <felix@twenty.com>
43 lines
487 B
Plaintext
43 lines
487 B
Plaintext
**/**/.env
|
|
.DS_Store
|
|
/.idea
|
|
**/**/node_modules/
|
|
.cache
|
|
|
|
# yarn is the recommended package manager across the project
|
|
**/**/.package-lock.json
|
|
|
|
.nx/installation
|
|
.nx/cache
|
|
|
|
.pnp.*
|
|
.yarn/*
|
|
!.yarn/patches
|
|
!.yarn/plugins
|
|
!.yarn/releases
|
|
!.yarn/sdks
|
|
!.yarn/versions
|
|
.vercel
|
|
|
|
**/**/logs/**
|
|
|
|
coverage
|
|
dist
|
|
storybook-static
|
|
*.tsbuildinfo
|
|
.eslintcache
|
|
.nyc_output
|
|
test-results/
|
|
dump.rdb
|
|
.tinyb
|
|
|
|
.notes
|
|
/data/
|
|
/.devenv/
|
|
/.direnv/
|
|
/.pre-commit-config.yaml
|
|
/.envrc
|
|
/devenv.nix
|
|
/flake.lock
|
|
/flake.nix
|