Almost nothing in folder after generating
See original GitHub issue$ lumber generate
Enter your database connection details and then your admin interface will be automatically generated.
? What's the database type? postgres
? What's the database name? [REDACTED]
? What's the database hostname? localhost
? What's the database port? 5432
? What's the database user? [REDACTED]
? What's the database password? [optional] ********
? Choose a project name: rx
cd rx && npm install...
npm WARN enoent ENOENT: no such file or directory, open '/Users/daniel.russell/rx/package.json'
npm WARN rx No description
npm WARN rx No repository field.
npm WARN rx No README data
npm WARN rx No license field.
👍 Hooray, installation success! 👍
Run your admin microservice:
$ cd "rx" && node ./bin/www
No package.json generated, so npm install does nothing. Inside the generated folder are empty etc and node_modules folders.
This is on OS X El Capitan 10.11.1 using Node version 5.6.0.
Issue Analytics
- State:
- Created 7 years ago
- Comments:32 (10 by maintainers)
Top Results From Across the Web
Folder Shows Empty but Files Are There Windows 10/8/7
The possible causes of the folder show empty but files are there is virus or malware infection. The virus hides the files and...
Read more >How do I add an empty directory to a Git repository?
Another way to make a directory stay (almost) empty (in the repository) is to create a .gitignore file inside that directory that contains...
Read more >Solved| Hard Drive Full but No Files in Windows 10
Have you ever confronted a question i.e. why is my hard drive full when there is no file saved to it? It is...
Read more >Automatically generating folders on desktop
Hello, few days ago I noticed blank folders on my desktop, so I deleted them. But when I restarted the computer, folders were...
Read more >How to create a hidden, nearly undeletable folder in Windows ...
While we could still use the command line to create and hide our folders, that technique no loner serves its extra-secretive purpose, so...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The Lumber version 1.3.0 supports the option to specify a database schema. I think it fixes this issue 👍
Hey @tejasrsuthar this is maintained sorry for the delay 😃
The problem is that sequelize (the ORM we use after generating the app using Lumber) does not have the support to specify the schema to use to analyze all the tables of a database. Let me schedule a fix for them and I think we will use our fork because sequelize is verryyyyyy slow to ship a new version.
Thanks!