Skip to content

Commit

Permalink
Reorganize all directories (#108)
Browse files Browse the repository at this point in the history
* Reorganize all directories

* Add changelog entry
  • Loading branch information
nwalters512 committed Apr 20, 2018
1 parent 3ae6afc commit d635523
Show file tree
Hide file tree
Showing 136 changed files with 444 additions and 246 deletions.
7 changes: 4 additions & 3 deletions .gitignore
Expand Up @@ -31,16 +31,17 @@ node_modules
jspm_packages

# Next.js build directory
.next/
build
.next

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history

# Dev database
dev.sqlite
# Dev databases
*.sqlite

# Machine-specific dotenv
.env
7 changes: 7 additions & 0 deletions .sequelizerc
@@ -0,0 +1,7 @@
const path = require('path');

module.exports = {
'config': path.resolve('src', 'config', 'config.json'),
'models-path': path.resolve('src', 'models'),
'migrations-path': path.resolve('src', 'migrations'),
}
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -13,7 +13,7 @@ before_install:
- mysql -e 'CREATE USER 'queue'@'localhost'; GRANT ALL PRIVILEGES ON *.* TO 'queue'@'localhost'; CREATE DATABASE queue; CREATE DATABASE queue_test;'
script:
- npm run build
- ./tools/diff_databases.sh
- ./scripts/diff_databases.sh
- DATABASE_URL=mysql://queue@localhost/queue_test npm run test-sequential
- npm run lint-js
- npm run prettier-diff
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,8 @@ with the current date and the next changes should go under a **[Next]** header.

## [Next]

* Reorganize directory structure. ([@nwalters512](https://github.com/nwalters512) in [#108](https://github.com/illinois/queue/pull/108))

## 19 April 2018

* Show dev workshop ad on homepage. ([@nwalters512](https://github.com/nwalters512) in [#107](https://github.com/illinois/queue/pull/107))
Expand Down

0 comments on commit d635523

Please sign in to comment.