21 lines
		
	
	
		
			291 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			291 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| # simple-auth
 | |
| 
 | |
| A little web server providing JWT token for auth auser.
 | |
| 
 | |
| **NOTE**: for now, the server is listening on port **9000**. Change it, in the src if needed.
 | |
| 
 | |
| ## Build
 | |
| 
 | |
| ```bash
 | |
| cargo build --release
 | |
| 
 | |
| # run the server
 | |
| ./target/release/simple-auth
 | |
| ```
 | |
| 
 | |
| ## Test
 | |
| 
 | |
| ```bash
 | |
| cargo test
 | |
| ```
 | 
