Skip to content

cryonayes/GoShare

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GoShare

GoShare is a new way to share files securely.

How to use

Create your own database with name go_share or follow these steps if you don't have mysql installed.

docker pull mysql:latest
docker run -it --name GoShareDB --network host -e MYSQL_ROOT_PASSWORD=[ROOT_PASS] -d mysql:latest
docker exec -it GoShareDB /bin/bash
mysql -p # Enter ROOT_PASS
CREATE USER '[username]'@'%' IDENTIFIED BY '[passwd]';
GRANT ALL PRIVILEGES ON *.* TO 'cryonayes'@'%';
FLUSH PRIVILEGES;

Compile & run GoShare services

go build && ./GoShare

Run next.js server

cd nextjs
yarn build && yarn start

Note: If you having "Error while saving data!" error, you probably forgot to create your uploads folder.

About

No description, website, or topics provided.

Resources

License

Stars

1 star

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors