-
Notifications
You must be signed in to change notification settings - Fork 406
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
Adds dockerized development environment #123
Open
alaxalves
wants to merge
8
commits into
igdmapps:master
Choose a base branch
from
alaxalves:docker_nut
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 7 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
a5cbf17
add dockerized nut wrap to project
alaxalves bd041a5
add new scripts to be run by nut wrap
alaxalves f915f47
adds new development setup step for docker+nut
alaxalves b73320a
adds new development setup step for docker+nut
alaxalves 4561670
fix README.md typo
alaxalves 53c11b5
Merge branch 'docker_nut' of https://github.com/alaxalves/igdm into d…
alaxalves f4ca3b8
changes nut.yml to use `npm start` and removes unnecessary `npm run gui`
alaxalves 62d88e3
Merge branch 'master' of https://github.com/ifedapoolarewaju/igdm int…
alaxalves File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM calbertts/node-gtk | ||
|
||
MAINTAINER [email protected] | ||
|
||
RUN apt-get update | ||
|
||
#Installing required Gulp and Electron Libraries | ||
RUN apt-get install -y libdbus-1-dev libgtk2.0-dev libnotify-dev libgnome-keyring-dev libgconf2-dev libasound2-dev libcap-dev libcups2-dev libxtst-dev libxss1 libnss3-dev libx11-xcb-dev | ||
|
||
COPY . /igdm | ||
WORKDIR /igdm | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
syntax_version: "7" | ||
|
||
docker_image: alaxalves/igdm:latest | ||
|
||
enable_gui: true | ||
|
||
container_working_directory: /igdm | ||
|
||
work_in_project_folder_as: /igdm | ||
|
||
volumes: | ||
main: | ||
host_path: . | ||
container_path: /igdm | ||
|
||
macros: | ||
run: | ||
actions: | ||
- npm install | ||
- npm start | ||
|
||
reload: | ||
actions: | ||
- npm run build |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ifedapoolarewaju Hey I've changed the code according to the request you've made!