Skip to content

Instantly share code, notes, and snippets.

@zacharycarter
Created May 12, 2018 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zacharycarter/93776411cbebe94bd7078b74c48ee398 to your computer and use it in GitHub Desktop.
Save zacharycarter/93776411cbebe94bd7078b74c48ee398 to your computer and use it in GitHub Desktop.
Example project layout
zachcarter@A-TX39FHTD6  ~/projects/nim-playground  tree -I '.vscode|node_modules|nimcache|.cache|dist'
.
├── Dockerfile
├── README.md
├── docker-compose.yaml
├── nginx.conf
├── parcel-plugin-nim
│ ├── package-lock.json
│ ├── package.json
│ └── src
│ ├── index.js
│ └── nim-asset.js
├── playground
│ ├── bundle.js
│ ├── lib
│ │ ├── fiddle.d.ts
│ │ └── lib.es6.d.ts
│ ├── package-lock.json
│ ├── package.json
│ ├── playground.nimble
│ ├── postcss.config.js
│ ├── public
│ │ ├── css
│ │ │ └── playground.css
│ │ ├── index.html
│ │ └── js
│ │ └── playground.js
│ ├── src
│ │ ├── playground
│ │ │ └── components
│ │ │ ├── editor.nim
│ │ │ └── header.nim
│ │ ├── playground.nim
│ │ └── playground.nims
│ ├── stylesheets
│ │ ├── build
│ │ │ └── main.css
│ │ └── main.scss
│ ├── tailwind.js
│ ├── tests
│ │ ├── test1.nim
│ │ └── test1.nims
│ └── tools
│ ├── sassc
│ └── sassc.nim
└── sandbox
├── Dockerfile
├── nim-base
│ └── Dockerfile
├── sandbox.nimble
├── src
│ └── sandbox.nim
└── tests
├── test1.nim
└── test1.nims
18 directories, 35 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment