README stuff, hacky justfile added and demo is recorded
This commit is contained in:
parent
94fda78bd9
commit
9558d02f39
7 changed files with 17 additions and 23 deletions
|
@ -1,6 +1,6 @@
|
|||
[](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
|
||||
*
|
||||
|
|
BIN
demo.mp4
Normal file
BIN
demo.mp4
Normal file
Binary file not shown.
13
src/Justfile
Normal file
13
src/Justfile
Normal file
|
@ -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
|
1
src/client/.gitignore
vendored
1
src/client/.gitignore
vendored
|
@ -47,3 +47,4 @@ app.*.map.json
|
|||
/android/app/release
|
||||
|
||||
shared-dir
|
||||
root-pubspec.yaml
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
name: cs445
|
||||
|
||||
environment:
|
||||
sdk: ^3.7.0
|
||||
|
||||
workspace:
|
||||
- shared
|
||||
- client
|
||||
dev_dependencies:
|
||||
very_good_analysis: ^7.0.0
|
1
src/shared/.gitignore
vendored
1
src/shared/.gitignore
vendored
|
@ -4,5 +4,6 @@
|
|||
pubspec.lock
|
||||
client-dir
|
||||
server-data
|
||||
root-pubspec.yaml
|
||||
path.log
|
||||
notes.md
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
name: cs445
|
||||
|
||||
environment:
|
||||
sdk: ^3.7.0
|
||||
|
||||
workspace:
|
||||
- shared
|
||||
- client
|
||||
dev_dependencies:
|
||||
very_good_analysis: ^7.0.0
|
Loading…
Reference in a new issue