Skip to content

Backend repository for the Sock Tracker application

License

Notifications You must be signed in to change notification settings

socky-app/socky-be

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Socky Backend

Backend repository for the Socky application

Usage

TODO: Add usage instructions with conventional setup, with docker and docker compose

Development

NOTE: Install cargo watch with cargo install cargo-watch.

Quick Dev

To watch both the server and the quick_dev in different terminals, execute the following:

# Terminal 1 - To run the server.
cargo watch -q -c -w src/ -w .cargo/ -x "run"

# Terminal 2 - To run the quick_dev.
cargo watch -q -c -w examples/ -x "run --example quick_dev"

Unit Test

To watch all unit tests while developing, use the following command:

cargo watch -q -c -x "test -- --nocapture"

Instead, if you prefer to execute only one test:

# Specific test with filter.
cargo watch -q -c -x "test model::task::tests::test_create -- --nocapture"

About

Backend repository for the Sock Tracker application

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages