5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-16 18:22:19 +00:00
This commit is contained in:
f 2020-02-06 13:18:10 -03:00
parent c2b695b017
commit 6434d130be
No known key found for this signature in database
GPG key ID: 2AE5A13E321F953D
3 changed files with 9 additions and 3 deletions

3
.gitignore vendored
View file

@ -39,3 +39,6 @@
yarn-debug.log* yarn-debug.log*
.yarn-integrity .yarn-integrity
/vendor /vendor
*.key
*.crt

View file

@ -3,6 +3,9 @@ mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
root_dir := $(patsubst %/,%,$(dir $(mkfile_path))) root_dir := $(patsubst %/,%,$(dir $(mkfile_path)))
include $(root_dir)/.env include $(root_dir)/.env
serve:
bundle exec rails s -b "ssl://0.0.0.0:3000?key=config/sutty.local.key&cert=config/sutty.local.crt"
# Limpiar los archivos de testeo # Limpiar los archivos de testeo
clean: clean:
rm -rf _sites/test-* _deploy/test-* rm -rf _sites/test-* _deploy/test-*

View file

@ -57,10 +57,10 @@ development:
# Reference: https://webpack.js.org/configuration/dev-server/ # Reference: https://webpack.js.org/configuration/dev-server/
dev_server: dev_server:
https: false https: true
host: localhost host: sutty.local
port: 3035 port: 3035
public: localhost:3035 public: sutty.local:3035
hmr: false hmr: false
# Inline should be set to true if using HMR # Inline should be set to true if using HMR
inline: true inline: true