Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
jovuit
funkwhale_OLD
Commits
96d219df
Verified
Commit
96d219df
authored
Mar 29, 2018
by
Eliot Berriot
Browse files
Local .env logic for webpack custom port
parent
75710638
Changes
4
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
96d219df
...
...
@@ -86,3 +86,4 @@ front/selenium-debug.log
docs/_build
data/
.env
README.rst
View file @
96d219df
...
...
@@ -73,6 +73,19 @@ via the following command::
docker-compose -f dev.yml build
Creating your env file
^^^^^^^^^^^^^^^^^^^^^^
We provide a working .env.dev configuration file that is suitable for
development. However, to enable customization on your machine, you should
also create a .env file that will hold your personal environment
variables (those will not be commited to the project).
Create it like this::
touch .env
Database management
^^^^^^^^^^^^^^^^^^^
...
...
dev.yml
View file @
96d219df
version
:
'
2
'
version
:
'
3
'
services
:
front
:
build
:
front
env_file
:
.env.dev
env_file
:
-
.env.dev
-
.env
environment
:
-
"
HOST=0.0.0.0"
-
"
WEBPACK_DEVSERVER_PORT=${WEBPACK_DEVSERVER_PORT-8080}"
ports
:
-
"
8080:
8080"
-
"
${WEBPACK_DEVSERVER_PORT-8080}:${WEBPACK_DEVSERVER_PORT-
8080
}
"
volumes
:
-
'
./front:/app'
postgres
:
env_file
:
.env.dev
env_file
:
-
.env.dev
-
.env
image
:
postgres
redis
:
env_file
:
.env.dev
env_file
:
-
.env.dev
-
.env
image
:
redis:3.0
celeryworker
:
env_file
:
.env.dev
env_file
:
-
.env.dev
-
.env
build
:
context
:
./api
dockerfile
:
docker/Dockerfile.test
...
...
@@ -41,7 +49,9 @@ services:
-
./api:/app
-
./data/music:/music
api
:
env_file
:
.env.dev
env_file
:
-
.env.dev
-
.env
build
:
context
:
./api
dockerfile
:
docker/Dockerfile.test
...
...
@@ -62,7 +72,9 @@ services:
-
redis
nginx
:
env_file
:
.env.dev
env_file
:
-
.env.dev
-
.env
image
:
nginx
links
:
-
api
...
...
front/config/index.js
View file @
96d219df
...
...
@@ -23,7 +23,7 @@ module.exports = {
},
dev
:
{
env
:
require
(
'
./dev.env
'
),
port
:
8080
,
port
:
parseInt
(
process
.
env
.
WEBPACK_DEVSERVER_PORT
)
,
host
:
'
127.0.0.1
'
,
autoOpenBrowser
:
true
,
assetsSubDirectory
:
'
static
'
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment