Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
realestate
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
nimrod
realestate
Commits
47ebdfc5
Commit
47ebdfc5
authored
9 years ago
by
nimrod
Browse files
Options
Downloads
Patches
Plain Diff
Add requirements.txt, Procfile and .env.
parent
912f1410
No related branches found
No related tags found
No related merge requests found
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
.env
+0
-0
0 additions, 0 deletions
.env
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
Procfile
+0
-0
0 additions, 0 deletions
Procfile
Vagrantfile
+4
-3
4 additions, 3 deletions
Vagrantfile
requirements.txt
+3
-0
3 additions, 0 deletions
requirements.txt
with
8 additions
and
3 deletions
.env
0 → 100644
+
0
−
0
View file @
47ebdfc5
This diff is collapsed.
Click to expand it.
.gitignore
+
1
−
0
View file @
47ebdfc5
...
...
@@ -3,3 +3,4 @@
*~
~*
*.pyc
.vagrant
This diff is collapsed.
Click to expand it.
Procfile
0 → 100644
+
0
−
0
View file @
47ebdfc5
This diff is collapsed.
Click to expand it.
Vagrantfile
+
4
−
3
View file @
47ebdfc5
...
...
@@ -37,7 +37,8 @@ Vagrant.configure(2) do |config|
# the path on the host to the actual folder. The second argument is
# the path on the guest to mount the folder. And the optional third
# argument is a set of non-required options.
# config.vm.synced_folder "../data", "/vagrant_data"
config
.
vm
.
synced_folder
"."
,
"/vagrant"
,
disabled:
true
config
.
vm
.
synced_folder
"./"
,
"/opt/realestate"
# Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.
...
...
@@ -66,7 +67,7 @@ Vagrant.configure(2) do |config|
# documentation for more information about their specific syntax and use.
config
.
vm
.
provision
"shell"
,
inline:
<<-
SHELL
sudo apt-get update
sudo apt-get install -yf python-pip python-dev postgresql postgresql-client python-psycopg2
sudo pip install
django
sudo apt-get install -yf python
3
-pip python
3
-dev postgresql postgresql-client python
3
-psycopg2
sudo pip
3
install
-r /opt/realestate/requirements.txt
SHELL
end
This diff is collapsed.
Click to expand it.
requirements.txt
0 → 100644
+
3
−
0
View file @
47ebdfc5
Django
>=1.8
gunicorn
honcho
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment