diff --git a/README.md b/README.md index 86783ed..88f4ed1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![Review Assignment Due Date](https://classroom.github.com/assets/deadline-readme-button-22041afd0340ce965d47ae6ef1cefeee28c7c493a6346c4f15d667ab976d596c.svg)](https://classroom.github.com/a/vfKrPwQS) -# << Project Title >> +# Binghamton Better Bus (BBB) v2 ## CS 445 Final Project ### Spring, 2025 @@ -39,7 +39,7 @@ A list of features, function or non-functional, you would like to add in the fut cd into the `src` directory and run `just setup` then run `docker-compose build`. -To run just run `docker-compose up` in the `src` directory +To run just run `docker-compose up` in the `src` directory, the site will be up on `localhost:8080` ## Built With @@ -58,4 +58,3 @@ DIY license written out which grants MIT rights to professor moore for the versi * Claude and chatGPT were used for the creation of scripts for certain rote data conversion tasks * This project would not exist with the data it has if not for prior instances of attempts to make this idea by US, of particular note is the usage of GTFS data which was only learned of in a prior attempt with Lucy Loerker -* diff --git a/demo.mp4 b/demo.mp4 new file mode 100644 index 0000000..f850977 Binary files /dev/null and b/demo.mp4 differ diff --git a/src/Justfile b/src/Justfile new file mode 100644 index 0000000..3288e2b --- /dev/null +++ b/src/Justfile @@ -0,0 +1,13 @@ +setup: + # this is a hack that is done due to a lack of communication + # towards the end of this project + # a slightly better hack could be done which avoids this but I + # don't wanna write things to work that way + cp -r client shared/client-dir + cp -r shared client/shared-dir + cp -r server/data shared/server-data + cp pubspec.yaml client/root-pubspec.yaml + cp pubspec.yaml shared/root-pubspec.yaml + +clean: + rm -rf client/root-pubspec.yaml shared/root-pubspec.yaml shared/client-dir client/shared-dir shared/server-data diff --git a/src/client/.gitignore b/src/client/.gitignore index 63afbd6..dfbdad2 100644 --- a/src/client/.gitignore +++ b/src/client/.gitignore @@ -47,3 +47,4 @@ app.*.map.json /android/app/release shared-dir +root-pubspec.yaml diff --git a/src/client/root-pubspec.yaml b/src/client/root-pubspec.yaml deleted file mode 100644 index 015f432..0000000 --- a/src/client/root-pubspec.yaml +++ /dev/null @@ -1,10 +0,0 @@ -name: cs445 - -environment: - sdk: ^3.7.0 - -workspace: - - shared - - client -dev_dependencies: - very_good_analysis: ^7.0.0 diff --git a/src/shared/.gitignore b/src/shared/.gitignore index 0bcfa49..18e8f2f 100644 --- a/src/shared/.gitignore +++ b/src/shared/.gitignore @@ -4,5 +4,6 @@ pubspec.lock client-dir server-data +root-pubspec.yaml path.log notes.md diff --git a/src/shared/root-pubspec.yaml b/src/shared/root-pubspec.yaml deleted file mode 100644 index 015f432..0000000 --- a/src/shared/root-pubspec.yaml +++ /dev/null @@ -1,10 +0,0 @@ -name: cs445 - -environment: - sdk: ^3.7.0 - -workspace: - - shared - - client -dev_dependencies: - very_good_analysis: ^7.0.0