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

Freshli.io lead gen MVP #45

Merged
merged 42 commits into from
Jul 22, 2020
Merged
Show file tree
Hide file tree
Changes from 36 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
292e111
Adds auto-generated MVC app
mscottford Jul 3, 2020
6d4663d
Adds skeleton of an analysis action
mscottford Jul 5, 2020
b7d0516
Adds docker support for running website
mscottford Jul 6, 2020
cb40015
Bumps SDK version to 3.1.301
mscottford Jul 6, 2020
7bfd3b7
Adjusts editorconfig rules
mscottford Jul 9, 2020
ff3c8e7
Removes max line length constraint for xml-like pages
mscottford Jul 9, 2020
a8c5ca0
Wraps long lines
mscottford Jul 9, 2020
6cb0785
Bumps .NET Core version used by actions
mscottford Jul 9, 2020
4a15524
Merge branch 'main' into web
mscottford Jul 9, 2020
15451ff
Adds docker configuration for building and running website from dev e…
mscottford Jul 11, 2020
43df2e8
Wires up database migrations
mscottford Jul 13, 2020
0663cd2
Correctly sets database host when running in Docker
mscottford Jul 13, 2020
40218ef
Reformats file
mscottford Jul 15, 2020
03c6a94
Removes unused using statements
mscottford Jul 15, 2020
3bfe526
Reformats file
mscottford Jul 15, 2020
25f7e40
Reformats file
mscottford Jul 15, 2020
9967ac8
Reformats file
mscottford Jul 15, 2020
c9e39b4
Switches to snake case naming convention
mscottford Jul 15, 2020
b58baa5
Runs migrations before the website starts
mscottford Jul 15, 2020
923f4cf
Saves analysis request to the database
mscottford Jul 15, 2020
c1546b6
Marks script as executable
mscottford Jul 15, 2020
126560f
Adds Hangfire for job processing
mscottford Jul 16, 2020
a55929e
Adds initial start at adding a worker container/process
mscottford Jul 17, 2020
35d2c80
Makes worker entrypoint executable
mscottford Jul 17, 2020
3fd8929
Fixes issues with worker startup
mscottford Jul 19, 2020
518abe0
Merge branch 'web' of ssh.github.com:corgibytes/libmetrics into web
mscottford Jul 19, 2020
49131e6
Merge branch 'main' into web
mscottford Jul 19, 2020
9f4368d
Ignores length of auto-generated files
mscottford Jul 19, 2020
837aa88
Adds ability to run eclint from docker-compose
mscottford Jul 19, 2020
b5d7381
Adds models for saving analysis results
mscottford Jul 20, 2020
98ce5b5
Enqueues analysis run upon request submission
mscottford Jul 20, 2020
15235f8
Adds all migrations to the ignore list
mscottford Jul 20, 2020
b525d22
Changes docker config to use ubuntu-bionic instead of debian-buster
mscottford Jul 21, 2020
4f29415
Merge branch 'main' into web
mscottford Jul 21, 2020
8a23685
Merge branch 'main' into web
mscottford Jul 21, 2020
67176c4
Adds AnalysisRequests controller
mscottford Jul 21, 2020
dc6b14c
Wraps long line
mscottford Jul 22, 2020
f112bac
Removes commented out lines
mscottford Jul 22, 2020
e530c5d
Adds Hangfire to development settings
mscottford Jul 22, 2020
cf6f5a4
Cleans up using statements
mscottford Jul 22, 2020
1a932c8
Adds README section for working with Freshl.Web via docker
mscottford Jul 22, 2020
11cb9a4
Fixes typos and makes minor tweaks to README
nickiemc Jul 22, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# directories
**/bin/
**/obj/
**/out/

# files
Dockerfile*
**/*.md
16 changes: 11 additions & 5 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
[*]
# Standard properties
max_line_length=80
max_line_length=off

[*.md]
trim_trailing_whitespace=true
insert_final_newline=true
max_line_length=off

[*.{appxmanifest,asax,ascx,aspx,build,cshtml,dtd,fs,fsi,fsscript,fsx,master,ml,mli,nuspec,razor,resw,resx,skin,vb,xaml,xamlx,xoml,xsd}]
indent_style=space
indent_size=4
tab_width=4

[*.{DotSettings,sln,ipynb,csproj,lock,json,approved.txt,editorconfig,yml,config}]
max_line_length=off

[*.yml]
indent_style=space
indent_size=2
Expand All @@ -23,12 +19,22 @@ trim_trailing_whitespace=false
insert_final_newline=true

[*.cs]
max_line_length=80
indent_style=space
indent_size=2
tab_width=8
trim_trailing_whitespace=true
insert_final_newline=true

[*.Designer.cs]
max_line_length = off

[ApplicationDbContextModelSnapshot.cs]
max_line_length = off

[*/Migrations/*.cs]
max_line_length = off

# Microsoft .NET properties
csharp_new_line_before_catch=false
csharp_new_line_before_else=false
Expand Down
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* text=auto

*.sh text eol=lf
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.300
dotnet-version: 3.1.301
mscottford marked this conversation as resolved.
Show resolved Hide resolved
- name: Install dependencies
run: dotnet restore
- name: Build
Expand Down
Loading