Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ember dash #1117

Draft
wants to merge 40 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
438771b
fix(client-ember): start on dash route
knownasilya Jul 2, 2020
1f09b92
fix(api,client-ember): add new fields to project and render projects …
knownasilya Jul 3, 2020
362ade5
fix: add user to project
knownasilya Jul 3, 2020
9fb6eec
fix: margin
knownasilya Jul 4, 2020
05a63b4
remove old app template
knownasilya Aug 15, 2020
8830a3d
fix component location
knownasilya Aug 15, 2020
e701ca1
remove dist-lib from merge
knownasilya Aug 15, 2020
f34f889
update ember version
knownasilya Aug 15, 2020
33856d2
fix ember object type error
knownasilya Aug 15, 2020
851b7e5
fix classic icons
knownasilya Aug 15, 2020
60525cb
remove extra component from merge, fix job margin
knownasilya Aug 15, 2020
3e30e00
fix missing service types
knownasilya Aug 15, 2020
a6ffce0
phases to ts
knownasilya Aug 16, 2020
6bd7034
replace minifyify with uglifyfy, fixes classic build
knownasilya Aug 16, 2020
518f8a0
show public projects
knownasilya Aug 16, 2020
aa177b8
update jobs api, handle error
knownasilya Aug 16, 2020
17ffe08
add live project
knownasilya Aug 17, 2020
56eeea4
move launch file
knownasilya Aug 17, 2020
baa84cb
start adding new projects route
knownasilya Aug 21, 2020
90b3642
chore: update rush
knownasilya Apr 22, 2021
f0f212c
chore: fix build
knownasilya Apr 23, 2021
335e856
chore(ui): remove some tempalte imports
knownasilya Apr 23, 2021
8516a35
chore(ui): remove old template imports, remove ED, add click outside …
knownasilya Apr 25, 2021
a1e640c
fix(ui): outside click for account and admin menus
knownasilya Apr 25, 2021
8f92f31
feat(ui): add provider setup links to dash
knownasilya Apr 27, 2021
2bff9e6
fix(ui): provider icons
knownasilya Apr 27, 2021
0a39421
fix(ui): v3.15.2...v3.26.1
knownasilya May 12, 2021
71e009f
fix(ui): update tailwind and frontile
knownasilya May 12, 2021
d43d8d9
fix(ui): update ts
knownasilya May 12, 2021
db6e91f
fix(ui): update concurrency and eslint to support ts
knownasilya May 12, 2021
fb6f5fb
chore(ui): auto fix eslint
knownasilya May 12, 2021
30b3d59
chore(ui): more js to ts files
knownasilya May 12, 2021
a2df07a
chore(ui): job interface and disable explicit returns
knownasilya May 12, 2021
67c7f6d
fix(ui): job types
knownasilya May 12, 2021
23d5bf6
fix(strider, ui): update socket.io and get dashboard updating
knownasilya May 15, 2021
488a1c7
chore(ui): add network service
knownasilya May 16, 2021
b889600
chore(ui): update truth helpers
knownasilya May 16, 2021
3d28cae
fix(api, ui): project model to ts, start making project based dash
knownasilya May 19, 2021
7063698
fix(api): project model types
knownasilya May 19, 2021
4b9902c
chore: use common volta
knownasilya Jan 17, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions .tours/strider-local.tour
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"$schema": "https://aka.ms/codetour-schema",
"title": "strider-local",
"steps": []
}
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Attach",
"port": 9229,
"request": "attach",
"skipFiles": ["<node_internals>/**"],
"type": "pwa-node"
}
]
}
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Contributing
============
# Contributing

Below are the guidelines for getting started when contributing to Strider
and any related plugins. Contributions don't need to be code based, you are
Expand All @@ -10,6 +9,7 @@ there as well.
## Technology Stack

Here are the technologies to be familiar with:

- [ember](https://emberjs.com) see clients/strider-ui
- [tailwind](https://tailwindcss.com)
- [express](http://expressjs.com)
Expand All @@ -34,7 +34,7 @@ How to get setup (if you're using docker, see the [Docker section in the README]
## Making Code Contributions

**Note:**: **Don't** make changes to the compiled files in the `dist/` directory, those
are generated by using `rush build` or `rush watch`. Most of the relavent files are
are generated by using `rush build` or `rush watch`. Most of the relevant files are
either in `clients/strider-ui/app` or `apps/strider/lib/` directories and that's where your changes should happen.

### Client-Side Dependencies
Expand Down
1 change: 1 addition & 0 deletions apps/strider/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ module.exports = {
},
rules: {
'@typescript-eslint/camelcase': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
},
};
2 changes: 1 addition & 1 deletion apps/strider/dist-lib/app.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/strider/dist-lib/app.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions apps/strider/dist-lib/backchannel.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/strider/dist-lib/backchannel.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions apps/strider/dist-lib/jobs.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/strider/dist-lib/jobs.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions apps/strider/dist-lib/libconfig.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.