Renamed api to clippable-svc to be more clear

This commit is contained in:
shockrah 2022-10-28 12:09:29 -07:00
parent 54af3628e4
commit 348410853a
25 changed files with 19 additions and 7 deletions

14
.gitignore vendored
View File

@ -3,13 +3,13 @@ msg
tmp/
keys/
api/target/
api/dev/
api/vids/
api/static/js/
api/static/dist/
api/thumbs/
api/*.db
clippable-svc/target/
clippable-svc/dev/
clippable-svc/vids/
clippable-svc/static/js/
clippable-svc/static/dist/
clippable-svc/thumbs/
clippable-svc/*.db
build/
gitpage/public/

3
clippable-svc/.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"rust.all_features": true
}

View File

@ -0,0 +1,9 @@
def Settings(**kwargs):
return {
'ls': {
'cargo': {
'features': ['admin'],
'noDefaultFeatures': True
}
}
}