Skip to content

Commit

Permalink
Merge pull request #4 from ngouterm/feature-test/cli
Browse files Browse the repository at this point in the history
Feature test/cli
  • Loading branch information
star4z authored Mar 22, 2020
2 parents 9289322 + 4060683 commit 4c365bc
Show file tree
Hide file tree
Showing 32 changed files with 515 additions and 537 deletions.
16 changes: 16 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
# cs371_backend
Backend for cs371 Movie Database

Goals:
Make a working backend that will allow me to do the following
- Configure local database connection
- Create users for storing multiple lists
- Each user can create multiple lists with titles for each list
- List available searchable databases
- Each list must be fully editable
- Must use a backend database for storage.
19 changes: 19 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>groupId</groupId>
<artifactId>cs371_backend</artifactId>
<version>1.0-SNAPSHOT</version>

<dependencies>
<dependency>
<groupId>info.movito</groupId>
<artifactId>themoviedbapi</artifactId>
<version>1.10</version>
</dependency>
</dependencies>

</project>
8 changes: 0 additions & 8 deletions src/com/cs371/storage/AbstractStorageHandle.java

This file was deleted.

12 changes: 0 additions & 12 deletions src/com/cs371/storage/AbstractStorageHandleImpl.java

This file was deleted.

6 changes: 0 additions & 6 deletions src/com/cs371/storage/DataAction.java

This file was deleted.

8 changes: 0 additions & 8 deletions src/com/cs371/storage/DataType.java

This file was deleted.

7 changes: 0 additions & 7 deletions src/com/cs371/storage/DatabaseHandle.java

This file was deleted.

59 changes: 0 additions & 59 deletions src/com/cs371/storage/DatabaseManager.java

This file was deleted.

6 changes: 0 additions & 6 deletions src/com/cs371/storage/DatabaseType.java

This file was deleted.

4 changes: 0 additions & 4 deletions src/com/cs371/storage/JSONParser.java

This file was deleted.

24 changes: 0 additions & 24 deletions src/com/cs371/storage/LocalDatabaseHandle.java

This file was deleted.

4 changes: 0 additions & 4 deletions src/com/cs371/storage/Parser.java

This file was deleted.

18 changes: 0 additions & 18 deletions src/com/cs371/storage/RDSDatabaseHandle.java

This file was deleted.

13 changes: 0 additions & 13 deletions src/com/cs371/storage/RemoteDatabaseHandle.java

This file was deleted.

7 changes: 0 additions & 7 deletions src/com/cs371/storage/StorageHandle.java

This file was deleted.

8 changes: 0 additions & 8 deletions src/com/cs371/storage/StorageManager.java

This file was deleted.

4 changes: 0 additions & 4 deletions src/com/cs371/storage/StringParser.java

This file was deleted.

Loading

0 comments on commit 4c365bc

Please sign in to comment.