Skip to content

Commit 45a7934

Browse files
authored
Merge pull request #74 from KevinKelly25/dev
Merge master branch into dev
2 parents 262233c + 56436af commit 45a7934

File tree

267 files changed

+45382
-1572
lines changed

Some content is hidden

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

267 files changed

+45382
-1572
lines changed

.gitignore

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
node_modules/
2-
client/fonts
3-
client/stylesheets
4-
client/javascripts/bootstrap.min.js
5-
client/javascripts/jquery.min.js
6-
client/javascripts/popper.min.js
1+
src/webapp/node_modules/*
2+
!src/webapp/node_modules/bootstrap
3+
src/webapp/client/fonts
4+
src/webapp/client/stylesheets
5+
src/webapp/client/javascripts/bootstrap.min.js
6+
src/webapp/client/javascripts/jquery.min.js
7+
src/webapp/client/javascripts/popper.min.js
8+
*.log
9+
src/webapp/client/javascripts/jquery.dataTables.min.js
10+
src/webapp/client/javascripts/angular-datatables.min.js
11+
src/webapp/client/javascripts/controllers/testControllers/

README.md

Lines changed: 6 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,9 @@
1-
# Bootstrap 4.1 Starter Pack
1+
<a href="https://postgresql.org"><img src="https://img.shields.io/badge/Powered%20by-PostgreSQL-blue.svg"/></a>
2+
<a href="https://github.com"><img src="https://img.shields.io/badge/Hosted%20on-GitHub-brightgreen.svg"/></a>
3+
<a href="https://zenhub.com"><img src="https://raw.githubusercontent.com/ZenHubIO/support/master/zenhub-badge.png"/></a>
24

3-
**Includes complete Bootstrap 4.1.0 dev environment with Gulp and Sass**
5+
# LearnSQL
46

5-
## Install Dependencies
7+
LearnSQL is an easy to use and easy to access Web Class Database that is specialized for learning SQL. This site currently has one main section that is a sandbox environment for students to practice SQL. Teachers are able to create these "sandbox" databases for each of their classes. For each database the instructor can view all their students work in that database. However, all students are only allowed to see thier own work. Teachers are also allowed to see student connections history and DDL activity. This is all done by using specialized databases using ClassDB. See here for more info: https://github.com/DASSL/ClassDB
68

7-
`npm install`
8-
## Compile Sass and Run Dev Server
9-
10-
`npm start`
11-
12-
13-
**Note: Browser-Sync is set with default browser as Firefox.**
14-
15-
`gulp.task("serve", ["sass"], function() {
16-
browserSync.init({
17-
server: "./src",
18-
browser: "firefox"
19-
});`
20-
21-
**Remove:** , browser: "firefox"* to use your default browser or set to a browser of your choice.
22-
23-
adding some test stuffs
9+
Another planned section is the learning section where there is a large amount of tutorials about SQL. In these tutorials we bring students the SQL standard definitions. After the written tutorial there are questions based on the tutorial the student just did. In these questions the students will write there own SQL statements and submit these statments to a live database to see if their answers are correct. These answers will provide real database responses so students are exposed to the real situations they may see out in the working world.

app.js

Lines changed: 0 additions & 51 deletions
This file was deleted.

client/javascripts/app.js

Lines changed: 0 additions & 57 deletions
This file was deleted.

0 commit comments

Comments
 (0)