Brenden Soares
7f9f658392
Merge pull request #209 from glaslos/patch-1
...
Fixing typo
2022-04-11 20:05:38 -07:00
Brenden Soares
126d20c873
Merge pull request #210 from revel/build_process_update
...
Updated Launch code
2022-04-11 20:03:26 -07:00
Steve
3602eb4ea7
Merge branch 'develop' into patch-1
2022-03-06 09:01:17 -08:00
Steve
192fc6669a
Merge pull request #200 from julidau/develop
...
harness: interrupt process on windows as well
2022-03-06 08:58:38 -08:00
Steve
5689f8679b
Merge pull request #204 from shinypb/master
...
Get rid of redundant space in the output of `revel new -a`
2022-03-06 08:55:23 -08:00
notzippy@gmail.com
6dba0c3d2d
Fix bad error syntax
...
An wrapped error message in the cmd module was referencing the wrong parameter value to be built
closes revel/revel#1532
2022-03-06 07:45:11 -08:00
notzippy@gmail.com
bb926f396a
Added additional pattern to test against
...
Another different missing pacakge error thrown that can be detected and added
This error occurs because a package may have been stripped down when originally loaded
2022-03-05 09:10:51 -08:00
notzippy@gmail.com
3cd5ebbde2
Updated launch scripts
2022-03-04 17:21:29 -08:00
notzippy@gmail.com
25dc05b31e
Updated Launch code
...
Added output to error stack, so terminal errors are displayed
Ficed c.Verbose, it was changed to an array which causes issues launching
Removed . notation from doing anything special. This was already replaced with the -p CLI option
Added documentaiton on adding the package name
Started watcher with force refresh.
2022-02-28 20:01:01 -08:00
Brenden Soares
0a40a2048e
Merge pull request #208 from notzippy/build_process_update
...
Fixed building
2022-02-23 09:44:18 -08:00
Lukas Rist
fcc1319245
Fixing type
2022-02-23 14:55:14 +01:00
notzippy@gmail.com
ea5acb720f
Updated shared build environments
...
Updated check for errors.
Updated go.mod
Added .vscode launch
2022-02-20 17:16:12 -08:00
Mark Christian
25d6352bc5
Get rid of redundant space in the output of revel new -a
2021-08-15 14:29:07 -07:00
Julian Daube
7a91d0ca0b
interrupt process on windows as well
...
On Windows, the killing of running services relies on the
60 second kill timeout, making it faster to restart the harness
to force rebuilding.
Since os.Interrupt works for me, remove the runtime os check in
harness/app.go completely.
2021-02-07 00:30:16 +01:00
Steve
b562bd2dc5
Merge pull request #199 from ptman/lint
...
Lint fixes
2020-10-20 06:29:15 -07:00
Steve
bf17a71166
Merge branch 'develop' into lint
2020-10-19 20:34:02 -07:00
Paul Tötterman
3d924a016b
Lint fixes
2020-10-19 13:40:52 +03:00
Steve
3cec19ee62
Merge pull request #187 from Laur1nMartins/master
...
Fixed parsing of user defined linker flags
v1.0.3
2020-07-21 09:12:17 -07:00
Steve
236499f9e5
Merge pull request #192 from revel/hotfix-1
...
Added local import map to getControllerFunc lookup
v1.0.2
2020-07-14 22:10:25 -07:00
notzippy@gmail.com
42e0e3bf2b
Added local import map to getControllerFunc lookup
2020-07-14 21:46:37 -07:00
Steve
b0484c9279
Merge pull request #188 from revel/hotfix-1
...
Fixed issues with test cases and launching app using the run mode
v1.0.1
2020-07-14 13:16:12 -07:00
notzippy@gmail.com
c7f4307a5d
Changed the local code walker to include all go files in the base path, and not just the app path
2020-07-14 12:45:10 -07:00
notzippy@gmail.com
ebc9c73ba0
Modified run command so launching command would be properly treated
2020-07-13 22:35:22 -07:00
Steve
2e2f22ad7d
remove go 1.12 test
2020-07-13 09:40:56 -07:00
Steve
357c382d96
Version compatible Check
...
Increase version compatibility to 1.0 - 1.9
2020-07-13 09:39:57 -07:00
Laurin
6d4ae81af9
Fixed parsing of user defined linker flags
2020-07-12 11:09:57 +02:00
notzippy@gmail.com
d64c7f164f
develop v1.1.0-dev
2020-07-11 22:57:37 -07:00
notzippy@gmail.com
6ecc0a7c0a
release v1.0.0
v1.0.0
2020-07-11 22:57:36 -07:00
Steve
d8117a33d3
Merge pull request #186 from notzippy/go-mod
...
Removed version update from Revel
2020-06-06 07:50:58 -07:00
notzippy@gmail.com
6371373eb5
Removed version update
...
Version control is maintained through go.mod file
Modified harness to only kill the application if not responded after 60 seconds in windows
2020-06-06 07:49:10 -07:00
Steve
28ac65f1c1
Merge pull request #185 from notzippy/go-mod
...
Go mod updates
2020-05-19 02:42:57 -07:00
notzippy@gmail.com
5070fb8be0
Fixed issue with new and run flag
...
Updated tests to run final test in non gopath, with new name
2020-05-19 02:23:18 -07:00
notzippy@gmail.com
904cfa2995
Added some informational messages while download
2020-05-18 12:43:00 -07:00
notzippy@gmail.com
223bd3b7c0
Added manual scan on packages in app folder
...
This allows for source code generation. Packages in <application>/app folder are scanned manually as opposed to the `packages.Load` scan which will fast fail on compile error, and leave you with go files with no syntax.
2020-05-18 11:47:01 -07:00
notzippy@gmail.com
4987ee8319
Added verbose logging to building / testing a no-vendor app
...
Removed section which raises an error when examining packages, we dont need to check for errors on foreign packages since we are importing only a slice of the data
2020-05-17 05:58:28 -07:00
notzippy@gmail.com
4bab4409b9
Updated Revel command
...
Added a check to see if harness had already started, saves a recompile on load
Added check to source info for local import renames
Removed the go/build check for path and just check existence of the path
Formatting updates
2020-05-13 22:26:05 -07:00
notzippy@gmail.com
741f49236a
Updated scanner
...
Removed scanning all the import statements, this is not needed
Added recursive scan for revel import path to pick up testunits
2020-05-08 15:41:20 -07:00
Steve
60b88a42c9
Merge pull request #180 from notzippy/go-mod
...
Initial commit to go mod
2020-05-03 21:47:09 -07:00
notzippy@gmail.com
49eef29bb5
Build and Historic build updates
...
Modified GOPATH to not modify build with go.mod
Updated go.mod to version 1.12
Updated harness to setup listener before killing process
Updated notvendored flag to --no-vendor
Updated command_config to ensure no-vendor can be build
Added additional checks in source path lookup
2020-05-03 13:39:48 -07:00
notzippy@gmail.com
9d3a554bec
Updates
...
Updated NotVendored flag
Updated travis matrix
Updated build log
2020-04-29 22:01:28 -07:00
notzippy@gmail.com
36bd6b944a
Corrected flags
2020-04-29 21:48:11 -07:00
notzippy@gmail.com
1d9df256a0
Moved test cases to run last
2020-04-29 21:39:19 -07:00
notzippy@gmail.com
ad694c0fb0
Debug travis
2020-04-29 21:32:12 -07:00
notzippy@gmail.com
fb4b56513a
Debug travis
...
Added verbose flag so we can see what is occurring,
Removed checkout for revel, not needed anymore
2020-04-29 21:13:00 -07:00
notzippy@gmail.com
20d5766eb6
Added gomod-flags
...
Added a gomod-flags parameter which allows you to run go mod commands on the go.mod file before the build is performed. This allows for development environments.
2020-04-29 17:05:39 -07:00
notzippy@gmail.com
0920905a0c
Updated to build go 1.12 and up
...
Modified to use fsnotify directlyUpdated travis to not use go deps
2020-04-28 12:56:23 -07:00
notzippy@gmail.com
31cb64e496
Check-in of command_test,
...
remaps the go mod command to use the develop branch.
2020-04-27 09:07:04 -07:00
notzippy@gmail.com
33abc47c7a
Fixed remaining test
2020-04-26 23:00:51 -07:00
notzippy@gmail.com
86736d6e43
Updated formating
...
Ran through testing individually for vendored Revel applications
2020-04-26 22:29:16 -07:00
notzippy@gmail.com
07d67846c1
Restructured command config
...
Removed go/build reference in clean
2020-04-26 22:28:46 -07:00