You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 19, 2021. It is now read-only.
Install tmux and overmind and copy the `.overmind.env.example` file to
`overmind.env` and copy the `Procfile.dev.example` to `Procfile.dev`
then adjust the location of your frontend repo in the Procfile. Default
assumes that the frontend repo is located in the same folder as the
backend repo. For ex: Change `cd ../dwellingly-app` to `cd
../your_relative_location` or use an absolute path.
Start all servers with `overmind start`. You can connect to any server
in the terminal with `overmind connect name_of_process`.
for ex: `overmind connect frontend` or `overmind connect backend`
This will start a development frontend and backend server. And start a
testing backend and frontend server.
Simplifies start up and removes the need to set config to specify which
server to start.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,7 @@ NOTE: Default development database is SQLite3. (Optionally setup and use [Postgr
98
98
99
99
8. Start the server using the flask environment (required every time the project is re-opened):
100
100
- Run: `pipenv run flask run`
101
-
-Run and restart the server on changes: `pipenv run flask run --reload`
101
+
-Optional: Use overmind to start frontend and backend servers with `overmind run start`: See frontend install doc for further documentation.
102
102
9. Test the server and view coverage reports. Use of coverage reporting is recommended to indicate test suite completeness and to locate defunct code in the code base.
103
103
- Run all the tests: `pipenv run pytest --cov .`
104
104
- Run tests in a particular directory: `pipenv run pytest --cov [path to directory]`
0 commit comments