Skip to content

Commit 57b2119

Browse files
Merge #1563
1563: Converting more tests r=jtgeibel a=carols10cents This includes the commits in #1556 omg i got to delete a whole bunch of stufffff!!! Still not everything converted, but we're getting close!! Co-authored-by: Carol (Nichols || Goulding) <carol.nichols@gmail.com>
2 parents 011c415 + e1ea9d3 commit 57b2119

File tree

11 files changed

+738
-1690
lines changed

11 files changed

+738
-1690
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ testem.log
2323
.env
2424
docker-compose.override.yml
2525
*~
26+
src/schema.rs.orig
2627

docs/CONTRIBUTING.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ as well.
8686

8787
In order to run the frontend on Windows and macOS, you will need to have installed:
8888

89-
- [node](https://nodejs.org/en/) >= 6.10.0
89+
- [node](https://nodejs.org/en/) >= 6.10.0 (see .travis.yml for what we currently use)
9090
- [npm](https://www.npmjs.com/get-npm) >= 4.0.0
9191

9292
Follow the links for each of these tools for their recommended installation
@@ -206,10 +206,16 @@ by typing `\q`) without any errors to connect to your running Postgres server.
206206
> sudo -u postgres createuser --superuser [yourusername]
207207
> ```
208208
>
209-
> Then creating a template database for yourself:
209+
> Next, if you try to run `psql` and get this error:
210210
>
211211
> ```
212-
> sudo -u postgres createdb [yourusername]
212+
> psql: FATAL: database "yourusername" does not exist
213+
> ```
214+
>
215+
> Fix that by creating a template database for yourself:
216+
>
217+
> ```
218+
> createdb [yourusername]
213219
> ```
214220
>
215221
> Try running `psql` again as yourself. If you're still getting errors, here are

package-lock.json

Lines changed: 9 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)