Questions tagged [parse-dashboard]
52 questions
1
vote
1 answer
How to show logs in Parse Dashboard Logs View
The Parse Dashboard has a Logs view that should show Logs that Parse produces.
Currently all we're getting is the LiveQuery started logs and no errors. So we know the logs can be read but not how to tell Parse to log them here.
I've searched online…

James
- 615
- 1
- 4
- 22
0
votes
0 answers
Many Parse applications on one parse-server filesystem
I've been looking for a solution to run several parse applications on one file system for a long time. I used multiple-apps-parse-server but this solution relied on outdated technologies (old mongo, node.js, parse-server itself and parse-dashboard).…

Adrian Zalewski
- 33
- 7
0
votes
3 answers
Docker-Compose Parse Dashboard
I am trying to run parse dashboard via the following docker-compose.yml:
version: '3'
services:
mongo:
image: mongo
ports:
- 27017:27017
volumes:
- ./data-db:/data/db
parse:
image: parseplatform/parse-server
…

Mircea
- 1,671
- 7
- 25
- 41
0
votes
0 answers
Parse Database on cloud machine only persists for a couple of days
There are a lot of pieces so I don't expect anyone to be able to answer this without seeing every configuration. But maybe people can tell me how to look for diagnostics or kind of how the major pieces fit together so that I can understand what I'm…

D. Kupra
- 343
- 1
- 9
0
votes
1 answer
parse-dashboard running on local parse-server errors out in with: Failed to load resource: the server responded with a status of 404 (Not Found)
While setting up a local test environment with parse-server and parse-dashboard an error is displayed in the browser and the screen is just blank white.
mongodb-runner is running and working on mongodb://127.0.0.1:27017/parse
parse-server is running…
0
votes
0 answers
Best practices for implementing Calculated Fields?
I would like to get some advise on the best practices regarding implementing calculated fields in the schema.
Typical e.g.:
Class ABC contains fields: Field1...Field10
Field1...Field5 are 'static' fields.
Field6 = some…

Dev
- 1
- 1
0
votes
1 answer
Parse Dashboard bundle.js net::ERR_ABORTED 404 (Not Found)
When I try to go to Parse Dashboard on https://www.example.net/dashboard it's redirecting me to https://www.example.net/login. and here I'm getting this error. GET https://example.net/bundles/login.bundle.js net::ERR_ABORTED 404 (Not Found) Also the…

Yunus Emre Buğuş
- 9
- 1
0
votes
0 answers
How to know if parse database is updated in android?
I am creating a messaging app using parse
but user will know there is new message only if they exit and relaunch app.
So I wanted to know if there is any way to know if database is updated
How to do this?

Aditya Dixit
- 9
- 6
0
votes
1 answer
Can I create a config file for Parse Server?
I'm quite new to Parse Server, I wonder if I could create a config file for the Parse Server like the way I did in the Parse Dashboard. With the Parse Dashboard, I create a file named parse-server-config.json with this format:
{
"apps": [
{
…

gigabyte
- 5
- 2
0
votes
0 answers
Parse database not logging in users
I am trying to login as a user anonymously but it isn't working.
Here is my code:
if (ParseUser.getCurrentUser() == null){
ParseAnonymousUtils.logIn(new LogInCallback() {
@Override
public void done(ParseUser user,…

Aditya Dixit
- 9
- 6
0
votes
1 answer
ParseUser.getList() in parse database
I am creating a twitter like app where we can follow other users and read their tweets.
ParseUser.getCurrentUser().getList("isFollowing").remove(users.get(position));
List…

Aditya Dixit
- 9
- 6
0
votes
1 answer
Difference between ParseUser.getCurrentUser.getList("isFollowing").add(users.get(p)) and ParseUser.getCurrentUser.add("isFollowing", users.get(p))
I am making a simple twitter like app where a user can follow or post.
I am using parse android for this.
In the users table I have created a column called "isFollowing" which indicates name of followers.
listView.setOnItemClickListener(new…

Aditya Dixit
- 9
- 6
0
votes
0 answers
Building master Parse-Dashboard from AWS EB
I currently have no problems installing parse-dashboard 2.1.0 on my AWS EB instance.
However, when I try to point it to the master version ("parse-dashboard": "github:parse-community/parse-dashboard#master"), my instance doesn't deploy, due to…

dblythy
- 108
- 1
- 7
0
votes
0 answers
FullText Seach Using Parse Dashboard API match exact case
Hi I have an application in angular 7 using Parse Dashboard to handle database. I am building a search algorithm which will search specific words with given input.
However i want to match exact case of given input.
For Example if i search - telecom…

Dev0395
- 9
- 1
0
votes
0 answers
push notifications not working on iOS with APNS and parse cloud functions (cloud functions working with android tho...)
I have been stuck on this for the past month now. All I have access to is parse dashboard version 1.4.24 which we are hosting on our own server on AWS. The push notifications were working over a year ago, but I think parse kinda ended and after that…

JJ S.
- 84
- 7