Skip to content

Commit ce5e672

Browse files
committed
added The pharmacy project
1 parent 18cdb3e commit ce5e672

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+2268
-10
lines changed

Express-note-taker

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit d434cb3ab209e13b2d18f889de4554e7e306d549

Note taker-Express/Develop/db/db.json

-10
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,5 @@
22
{
33
"title": "Test Title",
44
"text": "Test text"
5-
},
6-
{
7-
"id": "noteId",
8-
"title": "This are my notes",
9-
"text": "notes"
10-
},
11-
{
12-
"id": "noteId",
13-
"title": "more notes",
14-
"text": "notes"
155
}
166
]

The pharmacy/.eslintrc.js

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// =====================================================
2+
// The Eslint configuration below can be adjusted to
3+
// suit your needs. Please visit the ESLint website at
4+
// https://eslint.org/docs/user-guide/configuring for
5+
// information on how to do so. The configuration is
6+
// set to use the Airbnb style recommendations.
7+
// =====================================================
8+
9+
module.exports = {
10+
env: {
11+
browser: true,
12+
commonjs: true,
13+
es6: true,
14+
node: true,
15+
},
16+
extends: [
17+
'airbnb-base',
18+
],
19+
globals: {
20+
Atomics: 'readonly',
21+
SharedArrayBuffer: 'readonly',
22+
},
23+
parserOptions: {
24+
ecmaVersion: 2018,
25+
},
26+
rules: {
27+
"no-console": "off"
28+
},
29+
};

The pharmacy/.gitignore

+104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
lerna-debug.log*
8+
9+
# Diagnostic reports (https://nodejs.org/api/report.html)
10+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
11+
12+
# Runtime data
13+
pids
14+
*.pid
15+
*.seed
16+
*.pid.lock
17+
18+
# Directory for instrumented libs generated by jscoverage/JSCover
19+
lib-cov
20+
21+
# Coverage directory used by tools like istanbul
22+
coverage
23+
*.lcov
24+
25+
# nyc test coverage
26+
.nyc_output
27+
28+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
29+
.grunt
30+
31+
# Bower dependency directory (https://bower.io/)
32+
bower_components
33+
34+
# node-waf configuration
35+
.lock-wscript
36+
37+
# Compiled binary addons (https://nodejs.org/api/addons.html)
38+
build/Release
39+
40+
# Dependency directories
41+
node_modules/
42+
jspm_packages/
43+
44+
# TypeScript v1 declaration files
45+
typings/
46+
47+
# TypeScript cache
48+
*.tsbuildinfo
49+
50+
# Optional npm cache directory
51+
.npm
52+
53+
# Optional eslint cache
54+
.eslintcache
55+
56+
# Microbundle cache
57+
.rpt2_cache/
58+
.rts2_cache_cjs/
59+
.rts2_cache_es/
60+
.rts2_cache_umd/
61+
62+
# Optional REPL history
63+
.node_repl_history
64+
65+
# Output of 'npm pack'
66+
*.tgz
67+
68+
# Yarn Integrity file
69+
.yarn-integrity
70+
71+
# dotenv environment variables file
72+
.env
73+
.env.test
74+
75+
# parcel-bundler cache (https://parceljs.org/)
76+
.cache
77+
78+
# Next.js build output
79+
.next
80+
81+
# Nuxt.js build / generate output
82+
.nuxt
83+
dist
84+
85+
# Gatsby files
86+
.cache/
87+
# Comment in the public line in if your project uses Gatsby and *not* Next.js
88+
# https://nextjs.org/blog/next-9-1#public-directory-support
89+
# public
90+
91+
# vuepress build output
92+
.vuepress/dist
93+
94+
# Serverless directories
95+
.serverless/
96+
97+
# FuseBox cache
98+
.fusebox/
99+
100+
# DynamoDB Local files
101+
.dynamodb/
102+
103+
# TernJS port file
104+
.tern-port

The pharmacy/.travis.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
language: node_js
2+
node_js:
3+
- "12"
4+
5+
script:
6+
- npm run lint

The pharmacy/README.md

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# project-2
2+
3+
Pharmaproject by DDNND
4+
==========================
5+
File:
6+
'https://github.com/dasloinc/project-2'
7+
8+
Instructions:
9+
This app runs in the browser and features dynamically updated HTML and CSS powered by JavaScript/jQuery code that links to MSYQL. It designed for a local pharmacy store (e-commerce) in one of Toronto's neighbourhoods to avoid waiting in line for clients prescription. It also features a clean and polished user interface and it is responsive, adapting to multiple screen sizes. This webpage is a coding group project, which is based on concepts of Full Stack that incorporates API, NODE JS, Express, MYSQL, MVC.
10+
11+
In this project we used one API to retrieve drug information from the FDA website
12+
- API that connects to https://open.fda.gov/apis/.
13+
14+
Initial Page:
15+
The webpage consists of four different pages: "Home Page", "Profile", "Store", and "Check out". All features are dynamic, link to the MSQL & fully operational.
16+
17+
- Home page - once the main webpage loads, the user will be presented to our homepage;
18+
- Store page - this page is connected to the FDA API. You can search your product based on the way you would like to intake (route) the drug & the dosage form;
19+
- Profile page - you can create and account to sign in to proceed with your checkout. You can post, update and delete a product from the list;
20+
- Check out - procceing the payment of the chosen product;
21+
22+
Deployment:
23+
- heroku
24+
- JawsDB
25+
https://cryptic-hollows-33962.herokuapp.com/
26+
27+
Installing:
28+
Sequelize, MYSQL, Ajax, Axios, Fs', Path, Travis, Heroku, Express, Cloud front, NODE JS.
29+
30+
31+
Author:
32+
This app was design by 'DDNND'.
33+
34+
Credits:
35+
API: 'https://open.fda.gov/apis/'
36+
Other: 'jQuery' 'Github' 'heroku' 'MYSQL'

The pharmacy/config/config.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"development": {
3+
"username": "g7bpj2lel9ss8fzw",
4+
"password": "m6rl5ep5nhvn1m1y",
5+
"database": "ax22la4t0o6kqb4x",
6+
"host": "pqxt96p7ysz6rn1f.cbetxkdyhwsb.us-east-1.rds.amazonaws.com",
7+
"port": 3306,
8+
"dialect": "mysql"
9+
},
10+
"production": {
11+
"use_env_variable":"JAWSDB_URL",
12+
"dialect": "mysql"
13+
}
14+
}

The pharmacy/models/index.js

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
"use strict";
2+
3+
var fs = require("fs");
4+
var path = require("path");
5+
var Sequelize = require("sequelize");
6+
var basename = path.basename(module.filename);
7+
var env = process.env.NODE_ENV || "test";
8+
var config = require(__dirname + "/../config/config.json")[env];
9+
var db = {};
10+
11+
if (config.use_env_variable) {
12+
var sequelize = new Sequelize(process.env[config.use_env_variable]);
13+
} else {
14+
var sequelize = new Sequelize(config.database, config.username, config.password, config);
15+
}
16+
17+
fs
18+
.readdirSync(__dirname)
19+
.filter(function(file) {
20+
return (file.indexOf(".") !== 0) && (file !== basename) && (file.slice(-3) === ".js");
21+
})
22+
.forEach(function(file) {
23+
var model = sequelize["import"](path.join(__dirname, file));
24+
db[model.name] = model;
25+
});
26+
27+
Object.keys(db).forEach(function(modelName) {
28+
if (db[modelName].associate) {
29+
db[modelName].associate(db);
30+
}
31+
});
32+
33+
db.sequelize = sequelize;
34+
db.Sequelize = Sequelize;
35+
36+
module.exports = db;

The pharmacy/models/products.js

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
module.exports = function(sequelize, DataTypes) {
2+
var product = sequelize.define("product", {
3+
brand_name: {
4+
type: DataTypes.STRING,
5+
allowNull: false,
6+
validate: {
7+
len: [1]
8+
}
9+
},
10+
labeler_name: {
11+
type: DataTypes.STRING,
12+
allowNull: false,
13+
validate: {
14+
len: [1]
15+
}
16+
},
17+
marketing_start_date: {
18+
type: DataTypes.STRING,
19+
allowNull: false,
20+
validate: {
21+
len: [1]
22+
}
23+
},
24+
product_id: {
25+
type: DataTypes.STRING,
26+
allowNull: false,
27+
validate: {
28+
len: [1]
29+
}
30+
},
31+
price: {
32+
type: DataTypes.STRING,
33+
allowNull: false,
34+
validate: {
35+
len: [1]
36+
}
37+
},
38+
user: {
39+
type: DataTypes.STRING,
40+
allowNull: false,
41+
validate: {
42+
len: [1]
43+
}
44+
}
45+
});
46+
return product;
47+
};

The pharmacy/models/users.js

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
module.exports = function(sequelize, DataTypes) {
2+
var profile_table = sequelize.define("profile_table", {
3+
first_name: {
4+
type: DataTypes.STRING,
5+
allowNull: false,
6+
validate: {
7+
len: [1]
8+
}
9+
},
10+
address_name: {
11+
type: DataTypes.STRING,
12+
allowNull: false,
13+
validate: {
14+
len: [1]
15+
}
16+
},
17+
province: {
18+
type: DataTypes.STRING,
19+
allowNull: false,
20+
validate: {
21+
len: [1]
22+
}
23+
},
24+
postal_code: {
25+
type: DataTypes.STRING,
26+
allowNull: false,
27+
validate: {
28+
len: [1]
29+
}
30+
}
31+
32+
});
33+
return profile_table;
34+
};
35+

0 commit comments

Comments
 (0)