├── Develop ├── .env.EXAMPLE ├── .gitignore ├── config │ └── connection.js ├── db │ └── schema.sql ├── models │ ├── Category.js │ ├── Product.js │ ├── ProductTag.js │ ├── Tag.js │ └── index.js ├── package.json ├── routes │ ├── api │ │ ├── category-routes.js │ │ ├── index.js │ │ ├── product-routes.js │ │ └── tag-routes.js │ └── index.js ├── seeds │ ├── category-seeds.js │ ├── index.js │ ├── product-seeds.js │ ├── product-tag-seeds.js │ └── tag-seeds.js └── server.js └── README.md /Develop/.env.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/.env.EXAMPLE -------------------------------------------------------------------------------- /Develop/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /Develop/config/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/config/connection.js -------------------------------------------------------------------------------- /Develop/db/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/db/schema.sql -------------------------------------------------------------------------------- /Develop/models/Category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/models/Category.js -------------------------------------------------------------------------------- /Develop/models/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/models/Product.js -------------------------------------------------------------------------------- /Develop/models/ProductTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/models/ProductTag.js -------------------------------------------------------------------------------- /Develop/models/Tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/models/Tag.js -------------------------------------------------------------------------------- /Develop/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/models/index.js -------------------------------------------------------------------------------- /Develop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/package.json -------------------------------------------------------------------------------- /Develop/routes/api/category-routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/routes/api/category-routes.js -------------------------------------------------------------------------------- /Develop/routes/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/routes/api/index.js -------------------------------------------------------------------------------- /Develop/routes/api/product-routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/routes/api/product-routes.js -------------------------------------------------------------------------------- /Develop/routes/api/tag-routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/routes/api/tag-routes.js -------------------------------------------------------------------------------- /Develop/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/routes/index.js -------------------------------------------------------------------------------- /Develop/seeds/category-seeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/seeds/category-seeds.js -------------------------------------------------------------------------------- /Develop/seeds/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/seeds/index.js -------------------------------------------------------------------------------- /Develop/seeds/product-seeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/seeds/product-seeds.js -------------------------------------------------------------------------------- /Develop/seeds/product-tag-seeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/seeds/product-tag-seeds.js -------------------------------------------------------------------------------- /Develop/seeds/tag-seeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/seeds/tag-seeds.js -------------------------------------------------------------------------------- /Develop/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coding-boot-camp/fantastic-umbrella/HEAD/Develop/server.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # E-commerce Back End Starter Code --------------------------------------------------------------------------------