Skip to content

Commit

Permalink
Added link to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mbsantiago committed Jan 11, 2024
1 parent a8a8341 commit c7bef4e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ If you want to use Whombat for your research, please cite as:

> Balvanera, S. M., Mac Aodha, O., Weldy, M. J., Pringle, H., Browning, E., &
> Jones, K. E. (2023). Whombat: An open-source annotation tool for machine
> learning development in bioacoustics. arXiv preprint arXiv:2308.12688.
> learning development in bioacoustics. arXiv preprint [arXiv:2308.12688](https://arxiv.org/abs/2308.12688).
## Acknowledgements

Expand Down
11 changes: 5 additions & 6 deletions scripts/update_front.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
#!/bin/bash
# This script is used to update the front end of the website

# Move to the root directory of the backend
cd back

# Delete the old static files
rm -rf src/whombat/statics/*
if [ -d "back/src/whombat/statics" ]; then
rm -rf back/src/whombat/statics
fi

# Go to the root directory of the frontend
cd ../front
cd front

# Install the dependencies
npm install
Expand All @@ -18,7 +17,7 @@ npm run build

# Make sure the statics folder exists
if [ ! -d "../back/src/whombat/statics" ]; then
mkdir ../back/src/whombat/statics
mkdir ../back/src/whombat/statics
fi

# Move the static files to the backend
Expand Down

0 comments on commit c7bef4e

Please sign in to comment.