-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6cb4c0a
commit 8b20ee6
Showing
1 changed file
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,28 @@ | ||
# spotkin_flutter | ||
|
||
Currently deployed at <https://spotkin-fd416.web.app> | ||
A Flutter web front-end for Spotkin. <https://github.com/riverscuomo/spotkin> | ||
It should replace the spreadsheet method <https://docs.google.com/spreadsheets/d/1z5MejG6EKg8rf8vYKeFhw9XT_3PxkDFOrPSEKT_jYqI/edit?gid=1936655481#gid=1936655481> | ||
|
||
Currently deployed at <https://spotkin-fd416.web.app> though the Spotify login is not working (due to the redirect URI not being set up correctly?). | ||
Running locally works, however. | ||
I run it with these launch settings in vscode: | ||
|
||
``` | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Flutter Web", | ||
"request": "launch", | ||
"type": "dart", | ||
"program": "lib/main.dart", | ||
"args": [ | ||
"--web-port", | ||
"8888" | ||
] | ||
} | ||
] | ||
} | ||
``` | ||
|
||
## Getting Started |