This repository has been archived by the owner on Aug 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove server as it will only work for one person and I don't want to…
… manage state for others. Add dark mode css and convert to typescript.
- Loading branch information
Showing
14 changed files
with
193 additions
and
189 deletions.
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,3 +1,4 @@ | ||
node_modules | ||
dist | ||
config.js | ||
config.js | ||
*.sqlite |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -5,9 +5,8 @@ | |
"main": "dist/index.js", | ||
"scripts": { | ||
"build": "rollup -c", | ||
"build:dev": "rollup -c -m inline", | ||
"server": "node dist/server.js", | ||
"deploy": "git push -f heroku master" | ||
"watch": "rollup -c -w", | ||
"start": "docker run --rm --name directus -p 8055:8055 -v $PWD/db:/directus/database -v $PWD/dist:/directus/extensions/endpoints/strava -e KEY=test -e SECRET=test -e [email protected] -e ADMIN_PASSWORD=d1r3ctu5 directus/directus" | ||
}, | ||
"author": "", | ||
"license": "MIT", | ||
|
@@ -18,12 +17,14 @@ | |
"got": "^11.8.2", | ||
"node-html-parser": "^4.1.4", | ||
"nunjucks": "^3.2.3", | ||
"tough-cookie": "^4.0.0" | ||
"tough-cookie": "^4.0.0", | ||
"typescript": "^4.5.2" | ||
}, | ||
"devDependencies": { | ||
"@rollup/plugin-commonjs": "^19.0.2", | ||
"@rollup/plugin-json": "^4.1.0", | ||
"@rollup/plugin-node-resolve": "^13.0.4", | ||
"@rollup/plugin-typescript": "^8.3.0", | ||
"rollup": "^2.56.3", | ||
"rollup-plugin-clean": "^1.0.0", | ||
"rollup-plugin-copy": "^3.4.0", | ||
|
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
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
Oops, something went wrong.