5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-13 13:50:48 +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-integrity
/vendor
*.key
*.crt

View file

@ -3,6 +3,9 @@ mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
root_dir := $(patsubst %/,%,$(dir $(mkfile_path)))
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
clean:
rm -rf _sites/test-* _deploy/test-*

View file

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