Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
20af3108
Unverified
Commit
20af3108
authored
4 years ago
by
Eric Eastwood
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add some extra notes for getting Synapse running on macOS. (#8997)
parent
14950a45
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
INSTALL.md
+2
-1
2 additions, 1 deletion
INSTALL.md
README.rst
+21
-0
21 additions, 0 deletions
README.rst
changelog.d/8997.doc
+1
-0
1 addition, 0 deletions
changelog.d/8997.doc
with
25 additions
and
1 deletion
.gitignore
+
1
−
0
View file @
20af3108
...
@@ -12,6 +12,7 @@
...
@@ -12,6 +12,7 @@
_trial_temp/
_trial_temp/
_trial_temp*/
_trial_temp*/
/out
/out
.DS_Store
# stuff that is likely to exist when you run a server locally
# stuff that is likely to exist when you run a server locally
/*.db
/*.db
...
...
This diff is collapsed.
Click to expand it.
INSTALL.md
+
2
−
1
View file @
20af3108
...
@@ -190,7 +190,8 @@ via brew and inform `pip` about it so that `psycopg2` builds:
...
@@ -190,7 +190,8 @@ via brew and inform `pip` about it so that `psycopg2` builds:
```
sh
```
sh
brew
install
openssl@1.1
brew
install
openssl@1.1
export
LDFLAGS
=
-L
/usr/local/Cellar/openssl
\@
1.1/1.1.1d/lib/
export
LDFLAGS
=
"-L/usr/local/opt/openssl/lib"
export
CPPFLAGS
=
"-I/usr/local/opt/openssl/include"
```
```
##### OpenSUSE
##### OpenSUSE
...
...
This diff is collapsed.
Click to expand it.
README.rst
+
21
−
0
View file @
20af3108
...
@@ -280,6 +280,27 @@ differ)::
...
@@ -280,6 +280,27 @@ differ)::
PASSED (skips=15, successes=1322)
PASSED (skips=15, successes=1322)
We recommend using the demo which starts 3 federated instances running on ports `8080` - `8082`
./demo/start.sh
(to stop, you can use `./demo/stop.sh`)
If you just want to start a single instance of the app and run it directly:
# Create the homeserver.yaml config once
python -m synapse.app.homeserver \
--server-name my.domain.name \
--config-path homeserver.yaml \
--generate-config \
--report-stats=[yes|no]
# Start the app
python -m synapse.app.homeserver --config-path homeserver.yaml
Running the Integration Tests
Running the Integration Tests
=============================
=============================
...
...
This diff is collapsed.
Click to expand it.
changelog.d/8997.doc
0 → 100644
+
1
−
0
View file @
20af3108
Add some extra docs for getting Synapse running on macOS.
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